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

Commit c5bfa992 authored by Chris Li's avatar Chris Li Committed by Android (Google) Code Review
Browse files

Merge "Exclude finishing ActivityRecord when checking overlay" into tm-qpr-dev

parents 58b37f9a 7a7d096b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5818,8 +5818,8 @@ final class ActivityRecord extends WindowToken implements WindowManagerService.A
        // in untrusted mode. Traverse bottom to top with boundary so that it will only check
        // activities above this activity.
        final ActivityRecord differentUidOverlayActivity = getTask().getActivity(
                a -> a.getUid() != getUid(), this /* boundary */, false /* includeBoundary */,
                false /* traverseTopToBottom */);
                a -> !a.finishing && a.getUid() != getUid(), this /* boundary */,
                false /* includeBoundary */, false /* traverseTopToBottom */);
        return differentUidOverlayActivity != null;
    }