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

Commit 96ea1a05 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Bound progress to 0 to 1" into ub-launcher3-master

parents 238c4bae 3260168f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ public class AppWindowAnimationHelper {
            return null;
        }

        float progress = params.progress;
        float progress = Utilities.boundToRange(params.progress, 0, 1);
        updateCurrentRect(params);

        SurfaceParams[] surfaceParams = new SurfaceParams[params.targetSet.unfilteredApps.length];