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

Commit 8a356a70 authored by Beverly's avatar Beverly Committed by android-build-merger
Browse files

Merge "Don't show dnd suppressed icons on aod" into qt-dev

am: 67fd7ad7

Change-Id: Ie216a6e499d25c8299cd0388565083ce54bd4d66
parents 1b3ebb83 67fd7ad7
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -215,16 +215,13 @@ public class NotificationIconAreaController implements DarkReceiver,
        if (entry.isRowDismissed() && hideDismissed) {
        if (entry.isRowDismissed() && hideDismissed) {
            return false;
            return false;
        }
        }

        if (hideRepliedMessages && entry.isLastMessageFromReply()) {
        if (hideRepliedMessages && entry.isLastMessageFromReply()) {
            return false;
            return false;
        }
        }

        // showAmbient == show in shade but not shelf
        // showAmbient == show in shade but not shelf
        if (!showAmbient && entry.shouldSuppressStatusBar()) {
        if ((!showAmbient || mFullyDark) && entry.shouldSuppressStatusBar()) {
            return false;
            return false;
        }
        }

        return true;
        return true;
    }
    }