From 94e56f929c58a3f53529b2c28c81142010b63d09 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Tue, 11 Jun 2019 19:13:54 -0700 Subject: [PATCH] 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 --- .../systemui/statusbar/notification/row/ExpandableNotificationRow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java index 6b94a85e331e..0ca8814bef3e 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java @@ -715,7 +715,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView @Override public boolean showingPulsing() { - return isHeadsUpState() && (isDozing()) || (mOnKeyguard && isBypassEnabled()); + return isHeadsUpState() && (isDozing() || (mOnKeyguard && isBypassEnabled())); } /** -- 2.11.0