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

Commit a97557a1 authored by Tracy Zhou's avatar Tracy Zhou Committed by Android (Google) Code Review
Browse files

Merge "Consider overscroll adjustment of RecentsView for live tile" into ub-launcher3-master

parents f5ce80b8 932a327e
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -618,13 +618,6 @@ public abstract class AbsSwipeUpHandler<T extends StatefulActivity<?>, 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<T extends StatefulActivity<?>, 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();
    }