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

Commit 9896fe19 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

parents dff157c4 8ef35112
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);
            }
        }