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

Commit a211d5d5 authored by Mady Mellor's avatar Mady Mellor Committed by Automerger Merge Worker
Browse files

Fix x translation for switch animation to overflow am: b088bd9c am: db0ba17e

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11842162

Change-Id: I905ec6895fc4fb221db49c9c7827a3a52ac33f23
parents 44a541e4 db0ba17e
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1887,9 +1887,11 @@ public class BubbleStackView extends FrameLayout
                .withEndActions(this::releaseAnimatingOutBubbleBuffer)
                .start();

        boolean isOverflow = mExpandedBubble != null
                && mExpandedBubble.getKey().equals(BubbleOverflow.KEY);
        float expandingFromBubbleDestinationX =
                mExpandedAnimationController.getBubbleLeft(
                        mBubbleData.getBubbles().indexOf(mExpandedBubble));
                mExpandedAnimationController.getBubbleLeft(isOverflow ? getBubbleCount()
                        : mBubbleData.getBubbles().indexOf(mExpandedBubble));

        mExpandedViewContainer.setAlpha(1f);
        mExpandedViewContainer.setVisibility(View.VISIBLE);