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

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

Merge "Don't animate new bubble when already expanded" into main

parents b8cf10a4 4f35ee99
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -388,7 +388,7 @@ public class BubbleBarViewController {

            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) {
            if (b instanceof BubbleBarBubble && isInApp && !isExpanding && !isExpanded()) {
                mBubbleBarViewAnimator.animateBubbleInForStashed((BubbleBarBubble) b);
            }
        } else {