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

Commit d2c76e14 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: I5212af3e21819580c4cfaba0a202a568798e37ed
parents 8eccd076 de5b1d38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7693,7 +7693,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;
        }