diff options
author | bobzel <zzzman@gmail.com> | 2021-01-28 18:06:05 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-01-28 18:06:05 -0500 |
commit | 32361454f6582155bc84c154dc9315aa794b359e (patch) | |
tree | 41fa0d329d9fcfff927f157d1e38579f8987245f /src/client/views/nodes/ImageBox.tsx | |
parent | ecacd10cd3f70013d7112f5742eb4168e898949e (diff) |
cleaned up video/audio/stackedTimeline css. restored SpaceKey trigger to start/stop creating an anchor.
Diffstat (limited to 'src/client/views/nodes/ImageBox.tsx')
-rw-r--r-- | src/client/views/nodes/ImageBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx index 1da3a2779..92d6e2612 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -421,7 +421,7 @@ export class ImageBox extends ViewBoxAnnotatableComponent<FieldViewProps, ImageD } @action marqueeDown = (e: React.PointerEvent) => { - if (!e.altKey && e.button === 0 && this.props.Document._viewScale === 1 && this.active(true)) this._marqueeing = [e.clientX, e.clientY]; + if (!e.altKey && e.button === 0 && this.layoutDoc._viewScale === 1 && this.active(true)) this._marqueeing = [e.clientX, e.clientY]; } @action finishMarquee = () => { |