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

Commit 27a0e5a6 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: I27914d6161ab68ce236b9d15e5d07c71889edb4e
parents 4fb65090 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();
        }
    }