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

Commit e321a8eb authored by Jorge Gil's avatar Jorge Gil Committed by Automerger Merge Worker
Browse files

Merge "Cancel ongoing PIP animations in onTaskVanished" into sc-dev am: c794661b

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

Change-Id: I29f363203da762f76cfa99a1c40c558ed2b1cc54
parents 0ae3865a c794661b
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -711,6 +711,14 @@ public class PipTaskOrganizer implements ShellTaskOrganizer.TaskListener,
        if (info.displayId != Display.DEFAULT_DISPLAY && mOnDisplayIdChangeCallback != null) {
            mOnDisplayIdChangeCallback.accept(Display.DEFAULT_DISPLAY);
        }

        final PipAnimationController.PipTransitionAnimator animator =
                mPipAnimationController.getCurrentAnimator();
        if (animator != null) {
            animator.removeAllUpdateListeners();
            animator.removeAllListeners();
            animator.cancel();
        }
    }

    @Override