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

Commit 5541e3bc authored by Shawn Lee's avatar Shawn Lee Committed by Android (Google) Code Review
Browse files

Merge "Hide EmptyShadeView when on bouncer" into udc-dev

parents 30325163 bef2be67
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2809,6 +2809,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump
    @Override
    public void setBouncerShowing(boolean bouncerShowing) {
        mBouncerShowing = bouncerShowing;
        mNotificationStackScrollLayoutController.updateShowEmptyShadeView();
        updateVisibility();
    }

+2 −1
Original line number Diff line number Diff line
@@ -1235,7 +1235,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());