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

Commit fb8d090c authored by Tony Wickham's avatar Tony Wickham Committed by Automerger Merge Worker
Browse files

Merge "Remove progress != mFullscreenProgress optimization" into...

Merge "Remove progress != mFullscreenProgress optimization" into ub-launcher3-rvc-dev am: e19b065c

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/11932417

Change-Id: I41422ebccc64c9178f33598f609da228db6515dd
parents 1f3a4b65 e19b065c
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -947,9 +947,6 @@ public class TaskView extends FrameLayout implements PageCallbacks, Reusable {
     */
    public void setFullscreenProgress(float progress) {
        progress = Utilities.boundToRange(progress, 0, 1);
        if (progress == mFullscreenProgress) {
            return;
        }
        mFullscreenProgress = progress;
        boolean isFullscreen = mFullscreenProgress > 0;
        mIconView.setVisibility(progress < 1 ? VISIBLE : INVISIBLE);