contextMenuDisplay -> contextMenuDisplayed

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-02-25 11:16:40 +01:00
parent 4f3fe3d236
commit d0dea91e92
No known key found for this signature in database
GPG key ID: 9760693FDD98A790

View file

@ -59,7 +59,7 @@ export default class ImageView extends React.Component {
translationX: 0, translationX: 0,
translationY: 0, translationY: 0,
moving: false, moving: false,
contextMenuDisplay: false, contextMenuDisplayed: false,
}; };
} }
@ -179,13 +179,13 @@ export default class ImageView extends React.Component {
onOpenContextMenu = (ev) => { onOpenContextMenu = (ev) => {
this.setState({ this.setState({
contextMenuDisplay: true, contextMenuDisplayed: true,
}); });
} }
onCloseContextMenu = () => { onCloseContextMenu = () => {
this.setState({ this.setState({
contextMenuDisplay: false, contextMenuDisplayed: false,
}); });
} }
@ -231,7 +231,7 @@ export default class ImageView extends React.Component {
renderContextMenu() { renderContextMenu() {
let contextMenu = null; let contextMenu = null;
if (this.state.contextMenuDisplay) { if (this.state.contextMenuDisplayed) {
contextMenu = ( contextMenu = (
<ContextMenu <ContextMenu
{...aboveLeftOf(this.contextMenuButton.current.getBoundingClientRect())} {...aboveLeftOf(this.contextMenuButton.current.getBoundingClientRect())}