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

Commit c73e0b15 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix the exiting window still can receive touch."

parents e27854d2 0b650ba7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2466,7 +2466,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
    /** @return false if this window desires touch events. */
    boolean cantReceiveTouchInput() {
        return mAppToken != null && mAppToken.getTask() != null
                && mAppToken.getTask().mStack.shouldIgnoreInput();
                && (mAppToken.getTask().mStack.shouldIgnoreInput() || mAppToken.hiddenRequested);
    }

    @Override