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

Commit e9fdf5fa 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

am: d2c76e14

Change-Id: Iffd457bbfd1ec18aa1f66bef842424c6de1db2ad
parents d4471691 d2c76e14
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;
        }