Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9806673 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

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

Change-Id: I5a856b79b82f1d5b8cc27c5701bc4718e6c33e17
parents 478451b1 12d92390
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -669,8 +669,11 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
            mStackView.onThemeChanged();
        }
        mBubbleIconFactory = new BubbleIconFactory(mContext);
        for (Bubble b: mBubbleData.getBubbles()) {
        // Reload each bubble
        for (Bubble b: mBubbleData.getBubbles()) {
            b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
        }
        for (Bubble b: mBubbleData.getOverflowBubbles()) {
            b.inflate(null /* callback */, mContext, mStackView, mBubbleIconFactory);
        }
    }