summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/LauncherStateTransitionAnimation.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-07-15 08:35:27 -0700
committerSunny Goyal <sunnygoyal@google.com>2016-07-15 08:38:42 -0700
commit6f02f2ffb4b3cec91891bed9a0c179d2c913d27e (patch)
tree9e86c3a2d6e8512ae4263cf8fff0757c264744d0 /src/com/android/launcher3/LauncherStateTransitionAnimation.java
parenta30b51ceb29e179caf7f441763ffeb6bfd336998 (diff)
downloadandroid_packages_apps_Trebuchet-6f02f2ffb4b3cec91891bed9a0c179d2c913d27e.tar.gz
android_packages_apps_Trebuchet-6f02f2ffb4b3cec91891bed9a0c179d2c913d27e.tar.bz2
android_packages_apps_Trebuchet-6f02f2ffb4b3cec91891bed9a0c179d2c913d27e.zip
Fixing adjascent pages not visible when starting animation
Bug: 30125058 Change-Id: I99167b7c169479d06408f441e23b804077487975
Diffstat (limited to 'src/com/android/launcher3/LauncherStateTransitionAnimation.java')
-rw-r--r--src/com/android/launcher3/LauncherStateTransitionAnimation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/launcher3/LauncherStateTransitionAnimation.java b/src/com/android/launcher3/LauncherStateTransitionAnimation.java
index 41b81a9ba..c3b7fe760 100644
--- a/src/com/android/launcher3/LauncherStateTransitionAnimation.java
+++ b/src/com/android/launcher3/LauncherStateTransitionAnimation.java
@@ -888,8 +888,8 @@ public class LauncherStateTransitionAnimation {
mAllAppsController.animateToWorkspace(animation, revealDuration, false);
// Dispatch the prepare transition signal
- dispatchOnLauncherTransitionPrepare(fromView, animated, false);
- dispatchOnLauncherTransitionPrepare(toView, animated, false);
+ dispatchOnLauncherTransitionPrepare(fromView, animated, multiplePagesVisible);
+ dispatchOnLauncherTransitionPrepare(toView, animated, multiplePagesVisible);
final AnimatorSet stateAnimation = animation;
final Runnable startAnimRunnable = new Runnable() {