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

Commit 94e56f92 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed an issue where too many notifications were pulsing

With the bypass all notifications were pulsing. This was
accidental when factoring in changes.

Bug: 130327302
Test: atest SystemUITests
Change-Id: Iac5fb75763c7d093c40d7532e2d9ca1a799e983e
parent dd786813
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -715,7 +715,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView

    @Override
    public boolean showingPulsing() {
        return isHeadsUpState() && (isDozing()) || (mOnKeyguard && isBypassEnabled());
        return isHeadsUpState() && (isDozing() || (mOnKeyguard && isBypassEnabled()));
    }

    /**