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

Commit 1185482b authored by Selim Cinek's avatar Selim Cinek Committed by Android (Google) Code Review
Browse files

Merge "Fix issue where brightness mirror listener wouldn't be released"

parents faa39248 037a5007
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -4139,14 +4139,10 @@ public class StatusBar extends SystemUI implements DemoMode,
                .setStartDelay(0)
                .setDuration(FADE_KEYGUARD_DURATION_PULSING)
                .setInterpolator(ScrimController.KEYGUARD_FADE_OUT_INTERPOLATOR)
                .setListener(new AnimatorListenerAdapter() {
                    @Override
                    public void onAnimationEnd(Animator animation) {
                .withEndAction(()-> {
                    hideKeyguard();
                    mStatusBarKeyguardViewManager.onKeyguardFadedAway();
                    }
                })
                .start();
                }).start();
    }

    /**