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

Commit c9522c95 authored by The Android Open Source Project's avatar The Android Open Source Project Committed by Android Git Automerger
Browse files

am 727cec02: merge from open-source master

Merge commit '727cec02' into kraken

* commit '727cec02':
  Fix reporting of window visibility in WindowManagerService.
parents 892debc6 727cec02
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -8678,7 +8678,8 @@ public class WindowManagerService extends IWindowManager.Stub
            for (int i=0; i<N; i++) {
                WindowState win = allAppWindows.get(i);
                if (win == startingWindow || win.mAppFreezing
                        || win.mViewVisibility != View.VISIBLE) {
                        || win.mViewVisibility != View.VISIBLE
                        || win.mAttrs.type == TYPE_APPLICATION_STARTING) {
                    continue;
                }
                if (DEBUG_VISIBILITY) {