diff options
author | 2020-05-27 03:31:42 +0000 | |
---|---|---|
committer | 2020-05-27 03:31:42 +0000 | |
commit | 837b75e8f1c61438fb8bb77326e1a01cc5ca70a9 (patch) | |
tree | a1913f3977b625ffa17932ec54561aaf9a2ea1cd | |
parent | 5671bd38db14bcbe556c8afb4a23134fec7822df (diff) | |
parent | 88f572530fa7a4e67680b3837ef34fd79d0ee08e (diff) |
Merge "Fix an issue in my last CL" into rvc-dev am: 88f572530f
Change-Id: I1eb36bc05e1da309c8414597e84971df7e59bfb2
-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 f0f28fd9f28d..5f157c104200 100644 --- a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java +++ b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java @@ -863,12 +863,12 @@ public class BubbleController implements ConfigurationController.ConfigurationLi } else { bubble = mBubbleData.getOverflowBubbleWithKey(key); if (bubble != null) { + bubble.setShouldAutoExpand(true); promoteBubbleFromOverflow(bubble); } else if (entry.canBubble()) { // It can bubble but it's not -- it got aged out of the overflow before it // was dismissed or opened, make it a bubble again. setIsBubble(entry, true); - bubble.setShouldAutoExpand(true); updateBubble(entry, true /* suppressFlyout */, false /* showInShade */); } } |