[automerger] Fix prediction tip shows when user attempts but does not swipe up all the way to All Apps when quickstep is disabled. am: 5d89e1be98 am: cae48a2a09
Change-Id: I2a9062c0c3cb7995ecd1579ec9307c269c618eb6
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