Skip to content

Commit 2e6df83

Browse files
committed
#1598: Allow selecting with SHIFT key without multiDragKey being down
1 parent a60ded8 commit 2e6df83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/MultiDrag/MultiDrag.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ function MultiDragPlugin() {
323323
});
324324

325325
// Modifier activated, select from last to dragEl
326-
if ((!options.multiDragKey || this.multiDragKeyDown) && evt.shiftKey && lastMultiDragSelect && sortable.el.contains(lastMultiDragSelect)) {
326+
if (evt.shiftKey && lastMultiDragSelect && sortable.el.contains(lastMultiDragSelect)) {
327327
let lastIndex = index(lastMultiDragSelect),
328328
currentIndex = index(dragEl);
329329

0 commit comments

Comments
 (0)