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

Commit 036ca21e authored by Sunny Goyal's avatar Sunny Goyal Committed by Android (Google) Code Review
Browse files

Merge "Fixing home visibility not notified when there are no running...

Merge "Fixing home visibility not notified when there are no running activities during recents" into main
parents dd78a3ff 35cb40a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1069,7 +1069,7 @@ public class RecentsTransitionHandler implements Transitions.TransitionHandler {
        }

        private boolean allAppsAreTranslucent(ArrayList<TaskState> tasks) {
            if (tasks == null || tasks.isEmpty()) {
            if (tasks == null) {
                return false;
            }
            for (int i = tasks.size() - 1; i >= 0; --i) {