Loading services/core/java/com/android/server/wm/TaskStack.java +2 −1 Original line number Diff line number Diff line Loading @@ -257,8 +257,9 @@ public class TaskStack extends WindowContainer<Task> implements if (mAnimationBackgroundSurface == null) { return; } // TODO: Should be in relative coordinates. getPendingTransaction().setSize(mAnimationBackgroundSurface, bounds.width(), bounds.height()) .setPosition(mAnimationBackgroundSurface, 0, 0); .setPosition(mAnimationBackgroundSurface, bounds.left, bounds.top); scheduleAnimation(); } Loading Loading
services/core/java/com/android/server/wm/TaskStack.java +2 −1 Original line number Diff line number Diff line Loading @@ -257,8 +257,9 @@ public class TaskStack extends WindowContainer<Task> implements if (mAnimationBackgroundSurface == null) { return; } // TODO: Should be in relative coordinates. getPendingTransaction().setSize(mAnimationBackgroundSurface, bounds.width(), bounds.height()) .setPosition(mAnimationBackgroundSurface, 0, 0); .setPosition(mAnimationBackgroundSurface, bounds.left, bounds.top); scheduleAnimation(); } Loading