diff --git a/quickstep/libs/sysui_shared.jar b/quickstep/libs/sysui_shared.jar index d76cd25ded..6e62add8ed 100644 Binary files a/quickstep/libs/sysui_shared.jar and b/quickstep/libs/sysui_shared.jar differ diff --git a/quickstep/src/com/android/quickstep/WindowTransformSwipeHandler.java b/quickstep/src/com/android/quickstep/WindowTransformSwipeHandler.java index 25f395fd9e..67b36b3c31 100644 --- a/quickstep/src/com/android/quickstep/WindowTransformSwipeHandler.java +++ b/quickstep/src/com/android/quickstep/WindowTransformSwipeHandler.java @@ -563,8 +563,13 @@ public class WindowTransformSwipeHandler extends BaseSwipeInteractionHandler { for (RemoteAnimationTargetCompat app : mRecentsAnimationWrapper.targets) { if (app.mode == MODE_CLOSING) { transaction.setMatrix(app.leash, mTmpMatrix) - .setWindowCrop(app.leash, mClipRect) - .show(app.leash); + .setWindowCrop(app.leash, mClipRect); + + if (app.isNotInRecents) { + transaction.setAlpha(app.leash, 1 - shift); + } + + transaction.show(app.leash); } } transaction.apply();