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

Commit f56a2fd3 authored by Shawn Lee's avatar Shawn Lee Committed by Automerger Merge Worker
Browse files

DO NOT MERGE Hide EmptyShadeView when on bouncer am: 2e640447

parents 403992c6 2e640447
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2843,6 +2843,7 @@ public final class NotificationPanelViewController implements Dumpable {
    /** Set whether the bouncer is showing. */
    public void setBouncerShowing(boolean bouncerShowing) {
        mBouncerShowing = bouncerShowing;
        mNotificationStackScrollLayoutController.updateShowEmptyShadeView();
        updateVisibility();
    }

+2 −1
Original line number Diff line number Diff line
@@ -1240,7 +1240,8 @@ public class NotificationStackScrollLayoutController {
                // Hide empty shade view when in transition to Keyguard.
                // That avoids "No Notifications" to blink when transitioning to AOD.
                // For more details, see: b/228790482
                && !isInTransitionToKeyguard();
                && !isInTransitionToKeyguard()
                && !mCentralSurfaces.isBouncerShowing();

        mView.updateEmptyShadeView(shouldShow, mZenModeController.areNotificationsHiddenInShade());