diff options
author | bobzel <zzzman@gmail.com> | 2021-06-17 18:26:49 -0400 |
---|---|---|
committer | geireann <geireann.lindfield@gmail.com> | 2021-06-30 16:04:18 -0400 |
commit | f82aba302c493ec535263142b3b1dff65173f7b5 (patch) | |
tree | 39feb6b09e1a6e748446818a224d7cd282663920 /src/client/views/nodes/VideoBox.tsx | |
parent | 306d34d838ef6c7f51d653837ace5f019be2e5f3 (diff) |
fixed drawing on images/videos/photos
Diffstat (limited to 'src/client/views/nodes/VideoBox.tsx')
-rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index 263fd5a19..fc08a2302 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -543,7 +543,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp } marqueeDown = action((e: React.PointerEvent) => { - if (!e.altKey && e.button === 0 && this.layoutDoc._viewScale === 1 && this.isContentActive(true)) this._marqueeing = [e.clientX, e.clientY]; + if (!e.altKey && e.button === 0 && this.layoutDoc._viewScale === 1 && this.isContentActive(true) && ![InkTool.Highlighter, InkTool.Pen].includes(CurrentUserUtils.SelectedTool)) this._marqueeing = [e.clientX, e.clientY]; }); finishMarquee = action(() => { |