diff options
author | bobzel <zzzman@gmail.com> | 2022-06-10 10:39:00 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-06-10 10:39:00 -0400 |
commit | 910131b13080a2649606ef8a618c77fd81248343 (patch) | |
tree | 5dc27b58a0de2bf805b780c65274050f4030a593 /src/client/util/DragManager.ts | |
parent | 286740eab0a5111a155bd688a6ce0ab69909303e (diff) |
fixed errors
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index c3c6c22df..dbfba8992 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -455,7 +455,7 @@ export namespace DragManager { if (dragData instanceof DocumentDragData) { dragData.userDropAction = e.ctrlKey && e.altKey ? "copy" : e.ctrlKey ? "alias" : dragData.defaultDropAction; } - if (((e.target as any)?.className === "lm_tabs" || ((e.target as any)?.className === "lm_header" || e?.shiftKey) && dragData.draggedDocuments.length === 1) { + if (((e.target as any)?.className === "lm_tabs" || (e.target as any)?.className === "lm_header" || e?.shiftKey) && dragData.draggedDocuments.length === 1) { if (!startWindowDragTimer) { startWindowDragTimer = setTimeout(async () => { startWindowDragTimer = undefined; |