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

Change-Id: I9d2a0508ca137b397d6a3194cc6f860347ae5b02
This commit is contained in:
TreeHugger Robot
2020-04-27 23:23:13 +00:00
committed by Automerger Merge Worker

View File

@@ -669,8 +669,11 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
mStackView.onThemeChanged();
}
mBubbleIconFactory = new BubbleIconFactory(mContext);
// Reload each bubble
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);
}
}