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

Commit 0dd0ff75 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

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

Change-Id: I941d97a0d27c49d803e2fcbbd4dfbbb8879ae823
parents 25bc08c7 dad1e778
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();
    }