diff options
author | geireann <60007097+geireann@users.noreply.github.com> | 2020-06-18 05:03:47 +0800 |
---|---|---|
committer | geireann <60007097+geireann@users.noreply.github.com> | 2020-06-18 05:03:47 +0800 |
commit | cb5fa90bb580c2d618e279275c1e2cb49ce3d90c (patch) | |
tree | 8618a5f8ea9b2194fa105835cc9b346ca926886d | |
parent | 57d4c562b6f0ef39dcd68f2985a56c4a683fcf49 (diff) |
menu button bug fix
-rw-r--r-- | src/mobile/MobileInterface.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mobile/MobileInterface.tsx b/src/mobile/MobileInterface.tsx index 644535179..4000bee85 100644 --- a/src/mobile/MobileInterface.tsx +++ b/src/mobile/MobileInterface.tsx @@ -152,7 +152,7 @@ export class MobileInterface extends React.Component { * Return 'Home", which implies returning to 'Home' buttons */ returnHome = () => { - if (this._homeMenu || this.sidebarActive) { + if (!this._homeMenu || this.sidebarActive) { this._homeMenu = true; this._parents = []; this._activeDoc = this._homeDoc; |