From c57591f137cd5e9681c186d7bef8452c0f10e2e0 Mon Sep 17 00:00:00 2001 From: Mady Mellor Date: Tue, 26 May 2020 17:48:23 -0700 Subject: [PATCH] Fix an issue in my last CL Test: manual / treehugger Bug: 152883583 Change-Id: I14e94748f8868377df877edf4e7836e5f25e8d7f --- .../src/com/android/systemui/bubbles/BubbleController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java index f0f28fd9f28d4..5f157c1042003 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 */); } }