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

Commit 95d520f1 authored by George Mount's avatar George Mount Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in moveSharedElementsToOverlay" into lmp-mr1-dev

parents 45b70108 eca1ae5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -798,7 +798,7 @@ abstract class ActivityTransitionCoordinator extends ResultReceiver {
    }

    protected void moveSharedElementsToOverlay() {
        if (!mWindow.getSharedElementsUseOverlay()) {
        if (mWindow == null || !mWindow.getSharedElementsUseOverlay()) {
            return;
        }
        setSharedElementMatrices();