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
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user