diff options
author | bobzel <zzzman@gmail.com> | 2021-09-13 17:35:17 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-09-13 17:35:17 -0400 |
commit | d15841974305bf01251f60fa73a8464c7cb914fe (patch) | |
tree | 1754b55f9e4b6d7b8cb5f7c4c61bbd203bbe7926 /src/client/views/nodes/DocumentView.tsx | |
parent | bab473b8c5916404c49f46a639bc660aa7ee2130 (diff) |
fixed dragging document that is unselected by clicking on nested object in sidbear to not double-drag two items effectively deleting the sidebar document. fixed undoing of document decorations topbar buttons.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 007dca0c4..1fcbffadd 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -536,6 +536,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps } onPointerMove = (e: PointerEvent): void => { + if (e.cancelBubble) return; if ((InteractionUtils.IsType(e, InteractionUtils.PENTYPE) || [InkTool.Highlighter, InkTool.Pen].includes(CurrentUserUtils.SelectedTool))) return; if (e.cancelBubble && this.props.isDocumentActive?.()) { document.removeEventListener("pointermove", this.onPointerMove); // stop listening to pointerMove if something else has stopPropagated it (e.g., the MarqueeView) |