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

Commit 2de5ca2c authored by Phil Weaver's avatar Phil Weaver Committed by android-build-merger
Browse files

Make magnification ignore invisible wallpaper.

am: 473af05b

Change-Id: Ie40d7eda7b36d8613e1dd035d9446c4239e20193
parents c361eb7c 473af05b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -644,7 +644,7 @@ final class AccessibilityController {
                final int windowCount = windowList.size();
                for (int i = 0; i < windowCount; i++) {
                    WindowState windowState = windowList.get(i);
                    if (windowState.isOnScreen() &&
                    if (windowState.isOnScreen() && windowState.isVisibleLw() &&
                            !windowState.mWinAnimator.mEnterAnimationPending) {
                        outWindows.put(windowState.mLayer, windowState);
                    }