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

Commit a95904e1 authored by Lucas Dupin's avatar Lucas Dupin Committed by Android (Google) Code Review
Browse files

Merge "Fix issue where bouncer won't be dismissed when being dragged" into qt-r1-dev

parents 22110bae b7d32741
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -346,10 +346,10 @@ public class KeyguardBouncer {
    }

    /**
     * {@link #show(boolean)} was called but we're not showing yet.
     * {@link #show(boolean)} was called but we're not showing yet, or being dragged.
     */
    public boolean willShowSoon() {
        return mShowingSoon;
    public boolean inTransit() {
        return mShowingSoon || mExpansion != EXPANSION_HIDDEN;
    }

    /**
+1 −1
Original line number Diff line number Diff line
@@ -719,7 +719,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb
     * animation didn't finish yet.
     */
    public boolean bouncerIsOrWillBeShowing() {
        return mBouncer.isShowing() || mBouncer.willShowSoon();
        return mBouncer.isShowing() || mBouncer.inTransit();
    }

    public boolean isFullscreenBouncer() {