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

Commit 04350c57 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Don't promote the animation on Task's parent when clearing task" into sc-dev

parents 4721ef7c dd21fabb
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -623,7 +623,11 @@ public class AppTransitionController {
            siblings.add(current);
            boolean canPromote = true;

            if (parent == null || !parent.canCreateRemoteAnimationTarget()) {
            if (parent == null || !parent.canCreateRemoteAnimationTarget()
                    // We cannot promote the animation on Task's parent when the task is in
                    // clearing task in case the animating get stuck when performing the opening
                    // task that behind it.
                    || (current.asTask() != null && current.asTask().mInRemoveTask)) {
                canPromote = false;
            } else {
                // In case a descendant of the parent belongs to the other group, we cannot promote