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

Commit 51e79e44 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 am: 27a0e5a6

am: cf653fa8

* commit 'cf653fa8':
  Better handling of confused finish transition.

Change-Id: Iec8aa21cd416b69399e60de43e11029dcfb7f272
parents d1edab0e cf653fa8
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();
        }
    }