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

Commit 7755ba0a authored by Vinit Nayak's avatar Vinit Nayak Committed by Android (Google) Code Review
Browse files

Merge "Set transition in OneShotRemoteHandler for split screen" into udc-qpr-dev

parents 3d2d2fc4 7f1aeceb
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -324,8 +324,10 @@ class SplitScreenTransitions {

    void startFullscreenTransition(WindowContainerTransaction wct,
            @Nullable RemoteTransition handler) {
        mTransitions.startTransition(TRANSIT_OPEN, wct,
                new OneShotRemoteHandler(mTransitions.getMainExecutor(), handler));
        OneShotRemoteHandler fullscreenHandler =
                new OneShotRemoteHandler(mTransitions.getMainExecutor(), handler);
        fullscreenHandler.setTransition(mTransitions
                .startTransition(TRANSIT_OPEN, wct, fullscreenHandler));
    }