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

Commit 680b8de0 authored by randypfohl's avatar randypfohl Committed by Randy Pfohl
Browse files

Cleaning up liveview in overview while returning home for visual fix

Test: built and tested locally, verified bug doesn't occur during 3 button nav nor gesture nav animations. video in bug.

Bug: 245750127
Change-Id: I6e52722e73ff64e81686ee2ef3f7b2f7f5b1daa9
parent f781ef81
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -4099,6 +4099,15 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T
        }
        alpha = Utilities.boundToRange(alpha, 0, 1);
        mContentAlpha = alpha;

        runActionOnRemoteHandles(remoteTargetHandle -> {
            TransformParams params = remoteTargetHandle.getTransformParams();
            params.setTargetAlpha(mContentAlpha);
            if (params.getTargetSet() != null) {
                remoteTargetHandle.getTaskViewSimulator().apply(params);
            }
        });

        int runningTaskId = getTaskIdsForRunningTaskView()[0];
        for (int i = getTaskViewCount() - 1; i >= 0; i--) {
            TaskView child = requireTaskViewAt(i);