diff options
| -rw-r--r-- | services/core/java/com/android/server/wm/SurfaceAnimator.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/wm/SurfaceAnimator.java b/services/core/java/com/android/server/wm/SurfaceAnimator.java index aa817fd38b25..6358e4719fde 100644 --- a/services/core/java/com/android/server/wm/SurfaceAnimator.java +++ b/services/core/java/com/android/server/wm/SurfaceAnimator.java @@ -379,7 +379,8 @@ class SurfaceAnimator { if (DEBUG_ANIM) Slog.i(TAG, "Reparenting to leash"); final SurfaceControl.Builder builder = animatable.makeAnimationLeash() .setParent(animatable.getAnimationLeashParent()) - .setName(surface + " - animation-leash"); + .setName(surface + " - animation-leash") + .setColorLayer(); final SurfaceControl leash = builder.build(); if (!hidden) { // TODO(b/151665759) Defer reparent calls @@ -390,6 +391,7 @@ class SurfaceAnimator { // seamless rotation. transactionFactory.get().unsetColor(leash).show(leash).apply(); } + t.unsetColor(leash); t.setWindowCrop(leash, width, height); t.setPosition(leash, x, y); t.show(leash); |