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

Commit 38c660e5 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

am: 0d955d59

Change-Id: If54de1d566aa1942255a0018c774a37922f9faf8
parents 40dcffe7 0d955d59
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2621,7 +2621,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;
        }