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

Commit 5024e05b 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

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

Change-Id: I45229d39733f7ef262c9e7837364f046368a9393
parents 7a39e0ab b088bd9c
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);