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

Commit 5d89e1be authored by Tracy Zhou's avatar Tracy Zhou
Browse files

Fix prediction tip shows when user attempts but does not swipe up all the way...

Fix prediction tip shows when user attempts but does not swipe up all the way to All Apps when quickstep is disabled.

Bug: 80268964
Test: Manual test
Change-Id: I9b0620d57ccd466392c1db4c4899da3368a854db
parent e8532d84
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -347,14 +347,6 @@ public class LauncherStateManager {
                }
            }

            @Override
            public void onAnimationEnd(Animator animation) {
                super.onAnimationEnd(animation);
                for (int i = mListeners.size() - 1; i >= 0; i--) {
                    mListeners.get(i).onStateTransitionComplete(state);
                }
            }

            @Override
            public void onAnimationSuccess(Animator animator) {
                // Run any queued runnables
@@ -362,6 +354,9 @@ public class LauncherStateManager {
                    onCompleteRunnable.run();
                }
                onStateTransitionEnd(state);
                for (int i = mListeners.size() - 1; i >= 0; i--) {
                    mListeners.get(i).onStateTransitionComplete(state);
                }
            }
        });
        mConfig.setAnimation(animation, state);