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

Commit 12d92390 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Re-inflate overflow bubbles on theme change" into rvc-dev

parents cf256243 da9a6a2e
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);
        }
    }