diff --git a/quickstep/src/com/android/quickstep/AbsSwipeUpHandler.java b/quickstep/src/com/android/quickstep/AbsSwipeUpHandler.java index cc109f608c..4628daba10 100644 --- a/quickstep/src/com/android/quickstep/AbsSwipeUpHandler.java +++ b/quickstep/src/com/android/quickstep/AbsSwipeUpHandler.java @@ -618,13 +618,6 @@ public abstract class AbsSwipeUpHandler, Q extends updateSysUiFlags(mCurrentShift.value); applyWindowTransform(); - if (ENABLE_QUICKSTEP_LIVE_TILE.get()) { - if (mRecentsAnimationTargets != null) { - LiveTileOverlay.INSTANCE.update( - mTaskViewSimulator.getCurrentRect(), - mTaskViewSimulator.getCurrentCornerRadius()); - } - } updateLauncherTransitionProgress(); } @@ -1616,6 +1609,11 @@ public abstract class AbsSwipeUpHandler, Q extends } mTaskViewSimulator.apply(mTransformParams); } + if (ENABLE_QUICKSTEP_LIVE_TILE.get() && mRecentsAnimationTargets != null) { + LiveTileOverlay.INSTANCE.update( + mTaskViewSimulator.getCurrentRect(), + mTaskViewSimulator.getCurrentCornerRadius()); + } ProtoTracer.INSTANCE.get(mContext).scheduleFrameUpdate(); }