diff options
| author | 2019-05-04 00:19:32 +0000 | |
|---|---|---|
| committer | 2019-05-04 00:19:32 +0000 | |
| commit | 13ea64b9065c17b68cd38a0ca8f4de8bb14ae4d1 (patch) | |
| tree | 0aad476f6c8d2af192372333577ea27e7be9020f | |
| parent | 2dc6ddfa9dcb28579c55475f16821a9881eb6904 (diff) | |
| parent | ff40e01e34045ca64ff6f24b1bff691c2c1081fd (diff) | |
Merge "Fix dialer bubbles not bubbling / remove alertAgain logic" into qt-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java index 9ecc6f448f17..3c5c1028763b 100644 --- a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java +++ b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java @@ -27,7 +27,6 @@ import static android.view.View.VISIBLE; import static android.view.ViewGroup.LayoutParams.MATCH_PARENT; import static com.android.systemui.statusbar.StatusBarState.SHADE; -import static com.android.systemui.statusbar.notification.NotificationAlertingManager.alertAgain; import static java.lang.annotation.RetentionPolicy.SOURCE; @@ -464,7 +463,7 @@ public class BubbleController implements ConfigurationController.ConfigurationLi if (!shouldBubble && mBubbleData.hasBubbleWithKey(entry.key)) { // It was previously a bubble but no longer a bubble -- lets remove it removeBubble(entry.key, DISMISS_NO_LONGER_BUBBLE); - } else if (shouldBubble && alertAgain(entry, entry.notification.getNotification())) { + } else if (shouldBubble) { updateShowInShadeForSuppressNotification(entry); entry.setBubbleDismissed(false); // updates come back as bubbles even if dismissed updateBubble(entry); |