diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-10-21 11:28:26 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-10-21 11:28:26 -0400 |
commit | 9586d1e6bad65070a472da7a067db03f26fe9a4c (patch) | |
tree | d240e4c970a8249a3fd29ed865cd39013701b4a7 /src/client/views/nodes/ImageBox.tsx | |
parent | eb95a7e5f5e50970d87ae0fd1f76ee080e7fa169 (diff) |
cleaning up annotation overlays
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 a6d6a16a0..426b9cbb4 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -58,7 +58,6 @@ export class ImageBox extends DocAnnotatableComponent<FieldViewProps, ImageDocum public static LayoutString(fieldExt?: string) { return FieldView.LayoutString(ImageBox, "data", fieldExt); } private _imgRef: React.RefObject<HTMLImageElement> = React.createRef(); private _dropDisposer?: DragManager.DragDropDisposer; - @observable private _isOpen: boolean = false; @observable private _audioState = 0; @observable static _showControls: boolean; @@ -332,6 +331,7 @@ export class ImageBox extends DocAnnotatableComponent<FieldViewProps, ImageDocum <CollectionFreeFormView {...this.props} PanelHeight={this.props.PanelHeight} PanelWidth={this.props.PanelWidth} + isAnnotationOverlay={true} focus={this.props.focus} isSelected={this.props.isSelected} select={emptyFunction} |