Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f93ec63 authored by Yura's avatar Yura
Browse files

Do not show overview when menu pressed on CustomContent screen.

Bug: 12524591
Change-Id: I2bc0c4d206214d994c9a9e1bd13b42f2e53dba9f
parent fc244056
Loading
Loading
Loading
Loading
+15 −9
Original line number Diff line number Diff line
@@ -2044,9 +2044,14 @@ public class Launcher extends Activity
        }
    }

    public boolean isOnCustomContent() {
        return mWorkspace.isOnOrMovingToCustomContent();
    }

    @Override
    public boolean onPrepareOptionsMenu(Menu menu) {
        super.onPrepareOptionsMenu(menu);
        if (!isOnCustomContent()) {
            // Close any open folders
            closeFolder();
            // Stop resizing any widgets
@@ -2057,6 +2062,7 @@ public class Launcher extends Activity
            } else {
                showWorkspace(true);
            }
        }
        return false;
    }