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

Commit eb18c0fa authored by George Mount's avatar George Mount Committed by android-build-merger
Browse files

Merge "Better handling of confused finish transition." into nyc-dev

am: 2fd9cd7c

* commit '2fd9cd7c':
  Better handling of confused finish transition.

Change-Id: I0b43e01df97b98a7b646999999611c7aafbea33a
parents b86c149e 2fd9cd7c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -284,7 +284,7 @@ class ActivityTransitionState {
    }

    public boolean startExitBackTransition(final Activity activity) {
        if (mEnteringNames == null) {
        if (mEnteringNames == null || mCalledExitCoordinator != null) {
            return false;
        } else {
            if (!mHasExited) {
+1 −0
Original line number Diff line number Diff line
@@ -150,6 +150,7 @@ class EnterTransitionCoordinator extends ActivityTransitionCoordinator {
                }
            };
            decor.getViewTreeObserver().addOnPreDrawListener(mViewsReadyListener);
            decor.invalidate();
        }
    }