aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DragManager.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-06-07 13:39:17 -0400
committerbobzel <zzzman@gmail.com>2022-06-07 13:39:17 -0400
commitd3c89f90d376310cd583ae1c6ac4a7eb4c5a03ac (patch)
tree2b159f9a885a739cb27cdc9bff18935f0423e274 /src/client/util/DragManager.ts
parent6493d95e92c8ed58bb3a8c07ea4ca28dae82ea1d (diff)
fixed dragging items in overlayView to not invalidate DocumentView and cause a rerender. fixed loss of ability to select or drag after dragging a recording.
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r--src/client/util/DragManager.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts
index f438a8c11..9f8c49081 100644
--- a/src/client/util/DragManager.ts
+++ b/src/client/util/DragManager.ts
@@ -210,10 +210,6 @@ export namespace DragManager {
options?: DragOptions,
dropEvent?: () => any
) {
- // stop an 'accidental' on-click drag that may have occured if the user is in presenting mode
- // note: dragData.dropAction is only undefined when the element itself being dragged without being selected
- if (Doc.UserDoc()?.presentationMode === 'recording' && dragData.dropAction === undefined) return false;
-
const addAudioTag = (dropDoc: any) => {
dropDoc && !dropDoc.creationDate && (dropDoc.creationDate = new DateField);
dropDoc instanceof Doc && DocUtils.MakeLinkToActiveAudio(() => dropDoc);