diff options
author | 2020-06-10 03:43:48 +0000 | |
---|---|---|
committer | 2020-06-10 03:43:48 +0000 | |
commit | 2b9718bce7a1752d69b0a39d533bb543ca1b611a (patch) | |
tree | 8db812e0900c9e3602be78db69be38418aef92b8 | |
parent | c76256c1ed7b2ef365c51fabdf824eac29230421 (diff) | |
parent | f87853c227e67d37b60d213808f672307a928f30 (diff) |
Merge "Fix bubbles returning after a runtime restart" into rvc-dev
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java | 2 |
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) { |