diff options
author | bob <bcz@cs.brown.edu> | 2020-02-18 14:00:06 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-02-18 14:00:06 -0500 |
commit | 6d7f56cead95b1ab59a62ccc21ee52491386a655 (patch) | |
tree | b04ad3c04ba2604f0df56afd7e805e403862a41e /src/client/views/nodes/ImageBox.tsx | |
parent | 3c287ad66d84bf4fbd6f626f1590fdd82610762b (diff) |
cleaned up context menu ordering
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 5b5768d54..ba09a02a3 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -377,7 +377,7 @@ export class ImageBox extends DocAnnotatableComponent<FieldViewProps, ImageDocum this.resize(srcpath); - return <div className="imageBox-cont" key={this.props.Document[Id]} ref={this.createDropTarget} onContextMenu={this.specificContextMenu}> + return <div className="imageBox-cont" key={this.props.Document[Id]} ref={this.createDropTarget}> <div className="imageBox-fader" > <img key={this._smallRetryCount + (this._mediumRetryCount << 4) + (this._largeRetryCount << 8)} // force cache to update on retrys src={srcpath} |