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

Commit 69e398bd authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Code Review
Browse files

Merge "Fix reporting of window visibility in WindowManagerService."

parents 4fedd80c 3779dd12
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -8520,7 +8520,8 @@ public class WindowManagerService extends IWindowManager.Stub
            final int N = allAppWindows.size();
            for (int i=0; i<N; i++) {
                WindowState win = allAppWindows.get(i);
                if (win == startingWindow || win.mAppFreezing) {
                if (win == startingWindow || win.mAppFreezing
                    || win.mAttrs.type == TYPE_APPLICATION_STARTING) {
                    continue;
                }
                if (DEBUG_VISIBILITY) {