diff --git a/projects/common/components/input-elements/drop-list/drop-list.component.ts b/projects/common/components/input-elements/drop-list/drop-list.component.ts
index 7130dc7f85420d0e7c5e7991a119798ff0457940..8a90a983d9d7220ac1f2ecfd4258a3082bd16032 100644
--- a/projects/common/components/input-elements/drop-list/drop-list.component.ts
+++ b/projects/common/components/input-elements/drop-list/drop-list.component.ts
@@ -89,6 +89,9 @@ export class DropListComponent extends FormElementComponent implements OnInit {
   }
 
   dragStart(event: DragStartEvent, item: DragNDropValueObject, index: number, sourceListComponent: DropListComponent) {
+    if (this.dragOpService.isDragActive) { // Prevent pickung up second element while holding another (2 fingers)
+      return;
+    }
     this.dragOpService.startDrag(event.sourceElement, sourceListComponent, index, item, event.dragType);
     this.dragImageRef?.instance.initDragPreview(item, event.sourceElement, event.x, event.y);
     document.body.classList.add('dragging-active'); // add class for cursor while dragging