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

Commit 9532463c authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Fix blank activity after promoting overflow bubble" into rvc-dev am:...

Merge "Fix blank activity after promoting overflow bubble" into rvc-dev am: dad1e778 am: 0dd0ff75 am: 131e7dd3

Change-Id: Id5eee4402a4094b3744eecfa8389ee6653f2101b
parents ccc90034 131e7dd3
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -207,12 +207,13 @@ public class BubbleData {

        // Preserve new order for next repack, which sorts by last updated time.
        bubble.markUpdatedAt(mTimeSource.currentTimeMillis());
        setSelectedBubbleInternal(bubble);
        mOverflowBubbles.remove(bubble);

        bubble.inflate(
                b -> notificationEntryUpdated(bubble, /* suppressFlyout */
                        false, /* showInShade */ true),
                b -> {
                    notificationEntryUpdated(bubble, /* suppressFlyout */
                            false, /* showInShade */ true);
                    setSelectedBubbleInternal(bubble);
                },
                mContext, stack, factory);
        dispatchPendingChanges();
    }