Merge "Fix an issue in my last CL" into rvc-dev am: 88f572530f

Change-Id: I1eb36bc05e1da309c8414597e84971df7e59bfb2
This commit is contained in:
TreeHugger Robot
2020-05-27 03:31:42 +00:00
committed by Automerger Merge Worker

View File

@@ -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 */);
}
}