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

Commit 5905d55a authored by Liran Binyamin's avatar Liran Binyamin Committed by Android (Google) Code Review
Browse files

Merge "Only animate bubbles when in app" into main

parents e419495c 3232d8a5
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -371,10 +371,9 @@ public class BubbleBarViewController {
                return;
            }

            boolean isStashedOrGone =
                    mBubbleStashController.isStashed() || mBarView.getVisibility() != VISIBLE;
            // don't animate the new bubble if we're auto expanding from stashed
            if (b instanceof BubbleBarBubble && isStashedOrGone && !isExpanding) {
            boolean isInApp = mTaskbarStashController.isInApp();
            // only animate the new bubble if we're in an app and not auto expanding
            if (b instanceof BubbleBarBubble && isInApp && !isExpanding) {
                mBubbleBarViewAnimator.animateBubbleInForStashed((BubbleBarBubble) b);
            }
        } else {