Merge "Re-inflate overflow bubbles on theme change" into rvc-dev am: 12d9239069

Change-Id: I2efb4b6c5ef6da350a6ea36a80b64d2ed53d869c
This commit is contained in:
TreeHugger Robot
2020-04-27 22:54:05 +00:00
committed by Automerger Merge Worker

View File

@@ -669,8 +669,11 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
mStackView.onThemeChanged(); mStackView.onThemeChanged();
} }
mBubbleIconFactory = new BubbleIconFactory(mContext); mBubbleIconFactory = new BubbleIconFactory(mContext);
// Reload each bubble
for (Bubble b: mBubbleData.getBubbles()) { for (Bubble b: mBubbleData.getBubbles()) {
// Reload each bubble b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
}
for (Bubble b: mBubbleData.getOverflowBubbles()) {
b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory); b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
} }
} }