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

Commit 612a3aa8 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: Ib7d4bc28891c0aea02ce2c6c043592e30c705124
parents 3849b02a 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);