Merge "Prevent blinking when user presses home." into ub-launcher3-master

This commit is contained in:
TreeHugger Robot
2018-02-08 03:48:56 +00:00
committed by Android (Google) Code Review
5 changed files with 73 additions and 16 deletions
@@ -65,7 +65,7 @@ public class LauncherAppTransitionManager {
return getDefaultActivityLaunchOptions(launcher, v);
}
/** Cancels the current transition animation */
public void finishAnimation() {
/** Cancels the current Launcher transition animation */
public void finishLauncherAnimation() {
}
}
@@ -276,7 +276,7 @@ public class LauncherStateManager {
// finish it and let this state animation take over.
LauncherAppTransitionManager transitionManager = mLauncher.getAppTransitionManager();
if (transitionManager != null) {
transitionManager.finishAnimation();
transitionManager.finishLauncherAnimation();
}
}