aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgeireann <60007097+geireann@users.noreply.github.com>2020-06-18 05:03:47 +0800
committergeireann <60007097+geireann@users.noreply.github.com>2020-06-18 05:03:47 +0800
commitcb5fa90bb580c2d618e279275c1e2cb49ce3d90c (patch)
tree8618a5f8ea9b2194fa105835cc9b346ca926886d /src
parent57d4c562b6f0ef39dcd68f2985a56c4a683fcf49 (diff)
menu button bug fix
Diffstat (limited to 'src')
-rw-r--r--src/mobile/MobileInterface.tsx2
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;