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

Commit 8d4ab515 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: I2efb4b6c5ef6da350a6ea36a80b64d2ed53d869c
parents 99b5d6eb 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);
        }
    }