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

Commit 77a72dc4 authored by Evan Rosky's avatar Evan Rosky Committed by Android (Google) Code Review
Browse files

Merge "Use the pre-reset userLeaving for canPipOnFinish" into tm-qpr-dev

parents bc501c5e ac9edf2f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1674,6 +1674,7 @@ class ActivityStarter {
    private @Nullable Task handleStartResult(@NonNull ActivityRecord started,
            ActivityOptions options, int result, Transition newTransition,
            RemoteTransition remoteTransition) {
        final boolean userLeaving = mSupervisor.mUserLeaving;
        mSupervisor.mUserLeaving = false;
        final Task currentRootTask = started.getRootTask();
        final Task startedActivityRootTask =
@@ -1747,7 +1748,7 @@ class ActivityStarter {
            // until after we launched to identify the relevant activity.
            transitionController.setTransientLaunch(mLastStartActivityRecord, mPriorAboveTask);
        }
        if (!mSupervisor.mUserLeaving) {
        if (!userLeaving) {
            // no-user-leaving implies not entering PiP.
            transitionController.setCanPipOnFinish(false /* canPipOnFinish */);
        }