1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

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

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())}