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

Commit ca8aad2f authored by Evan Laird's avatar Evan Laird
Browse files

Fix inadvertently inverted notif count check

Test: tap-and-hold to expand notification panel
Change-Id: I259a66fb7d317a469cb04df158aa1f319ff61300
parent 2ec752de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3562,7 +3562,7 @@ public class NotificationPanelView extends PanelView implements

    private void updateShowEmptyShadeView() {
        boolean showEmptyShadeView =
                mBarState != StatusBarState.KEYGUARD && mEntryManager.hasActiveNotifications();
                mBarState != StatusBarState.KEYGUARD && !mEntryManager.hasActiveNotifications();
        showEmptyShadeView(showEmptyShadeView);
    }