diff options
author | bobzel <zzzman@gmail.com> | 2021-07-14 14:25:48 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-07-14 14:25:48 -0400 |
commit | 0400d09d8fc52e5c5ded50d9b8c0dfab400fd111 (patch) | |
tree | edb552ad527f6ff4b7fa05a124f418933a6825cb | |
parent | 6b5c40fda530337f3dcb70aa640b085d0d4f1adf (diff) |
from last
-rw-r--r-- | src/client/views/nodes/ImageBox.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx index 6f249d27d..d876ae818 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -340,7 +340,7 @@ export class ImageBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp @action finishMarquee = () => { this._marqueeing = undefined; - this.props.select(false); + this.props.select(false) } render() { @@ -365,7 +365,7 @@ export class ImageBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp ScreenToLocalTransform={this.screenToLocalTransform} scaling={returnOne} select={emptyFunction} - isContentActive={returnFalse} + isContentActive={this.isContentActive} whenChildContentsActiveChanged={this.whenChildContentsActiveChanged} removeDocument={this.removeDocument} moveDocument={this.moveDocument} |