summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mady Mellor <madym@google.com> 2020-06-10 03:43:48 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2020-06-10 03:43:48 +0000
commit2b9718bce7a1752d69b0a39d533bb543ca1b611a (patch)
tree8db812e0900c9e3602be78db69be38418aef92b8
parentc76256c1ed7b2ef365c51fabdf824eac29230421 (diff)
parentf87853c227e67d37b60d213808f672307a928f30 (diff)
Merge "Fix bubbles returning after a runtime restart" into rvc-dev
-rw-r--r--packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java
index 18d07f07fcc4..35cac4d9d63d 100644
--- a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java
+++ b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java
@@ -1214,7 +1214,7 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
}
}
} else {
- if (bubble.isBubble() && bubble.showInShade()) {
+ if (bubble.isBubble()) {
setIsBubble(bubble, false /* isBubble */);
}
if (bubble.getEntry() != null && bubble.getEntry().getRow() != null) {