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

Commit 952fa0d0 authored by Issei Suzuki's avatar Issei Suzuki Committed by Android (Google) Code Review
Browse files

Merge "Solved flicker issue when expanding a bubble for the second time." into qt-r1-bubbles-dev

parents 214f5c01 71f7ae4c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -919,6 +919,7 @@ public class BubbleStackView extends FrameLayout {

    private void animateCollapse() {
        mIsExpanded = false;
        final Bubble previouslySelected = mExpandedBubble;
        beforeExpandedViewAnimation();

        mBubbleContainer.cancelAllAnimations();
@@ -928,6 +929,7 @@ public class BubbleStackView extends FrameLayout {
                () -> {
                    mBubbleContainer.setActiveController(mStackAnimationController);
                    afterExpandedViewAnimation();
                    previouslySelected.setContentVisibility(false);
                });

        mExpandedViewXAnim.animateToFinalPosition(getCollapsedX());