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

Commit b922d9d1 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: 8ef35112 am: 2684945f

parents c3274842 2684945f
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);
            }
        }