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

Commit 0d955d59 authored by Jim Miller's avatar Jim Miller Committed by android-build-merger
Browse files

Disable systemui navigation events while keyguard is showing am: 1c21fc5e

am: dbc58440

Change-Id: If1511a7ccd62326d9e9e0f0497711b22f4c93ab5
parents 15cb51e0 dbc58440
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2620,7 +2620,8 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
    @Override
    public void handleSystemNavigationKey(int key) {
        if (SPEW) Log.d(TAG, "handleSystemNavigationKey: " + key);
        if (!panelsEnabled() || !mKeyguardMonitor.isDeviceInteractive()) {
        if (!panelsEnabled() || !mKeyguardMonitor.isDeviceInteractive()
                || mKeyguardMonitor.isShowing()) {
            return;
        }