contextMenuDisplay -> contextMenuDisplayed

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Š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
1 changed files with 4 additions and 4 deletions

View File

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