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

Commit 4f7a7290 authored by Arthur Hung's avatar Arthur Hung Committed by android-build-merger
Browse files

Merge "Fix WindowFocusTests#testTapNonFocusableWindow failed" into qt-dev

am: de5b1d38

Change-Id: Ibc3479934ec0b23252e807a998e88458c7bb4019
parents 197e6650 de5b1d38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7690,7 +7690,7 @@ public class WindowManagerService extends IWindowManager.Stub

    private void onPointerDownOutsideFocusLocked(IBinder touchedToken) {
        final WindowState touchedWindow = windowForClientLocked(null, touchedToken, false);
        if (touchedWindow == null) {
        if (touchedWindow == null || !touchedWindow.canReceiveKeys()) {
            return;
        }