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

Commit 8e169c4b authored by Ryan Lin's avatar Ryan Lin Committed by Automerger Merge Worker
Browse files

Merge "Drop the cloned windows from visible window list" into tm-dev am:...

Merge "Drop the cloned windows from visible window list" into tm-dev am: 8ef35112 am: 2684945f am: e49dcfca

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18659076



Change-Id: I8122a66e8137a4df3afdb96f8ac99e4ce858cea1
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 2fe7f4b1 e49dcfca
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -210,6 +210,7 @@ public final class InputWindowHandle {
                .append(", scaleFactor=").append(scaleFactor)
                .append(", transform=").append(transform)
                .append(", windowToken=").append(windowToken)
                .append(", isClone=").append(isClone)
                .toString();

    }
+1 −1
Original line number Diff line number Diff line
@@ -154,7 +154,7 @@ public final class AccessibilityWindowsPopulator extends WindowInfosListener {

        for (InputWindowHandle window : windowHandles) {
            final boolean visible = (window.inputConfig & InputConfig.NOT_VISIBLE) == 0;
            if (visible && window.getWindow() != null) {
            if (visible && window.getWindow() != null && !window.isClone) {
                tempVisibleWindows.add(window);
            }
        }