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

Commit 44783f19 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Prevent quickscrub/switch from occuring when keyguard is up"

parents 5622f475 622a7e6a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@ public class NavigationBarGestureHelper implements TunerService.Tunable, Gesture
    }

    public boolean onInterceptTouchEvent(MotionEvent event) {
        if (mNavigationBarView.inScreenPinning()) {
        if (mNavigationBarView.inScreenPinning() || mStatusBar.isKeyguardShowing()) {
            return false;
        }

@@ -182,7 +182,7 @@ public class NavigationBarGestureHelper implements TunerService.Tunable, Gesture
    }

    public boolean onTouchEvent(MotionEvent event) {
        if (mNavigationBarView.inScreenPinning()) {
        if (mNavigationBarView.inScreenPinning() || mStatusBar.isKeyguardShowing()) {
            return false;
        }