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

Commit 35cb40a5 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Fixing home visibility not notified when there are no running activities during recents

Bug: 331947116
Test: Manual
Flag: None
Change-Id: I1b2f1f2a3896032ad7a50fa528b69dab8e7779f7
parent 3b463a51
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) {