summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-07-15 18:05:15 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-07-15 18:05:15 +0000
commit77ba6b9cad542a78910b6d7c638a1254b31d79ab (patch)
tree6dc3a73ceb971b8241e895e93ee7b964c153f099 /src
parent879f3bcef5fd05683f2aa19e3b68073f0dec18ec (diff)
parent6f02f2ffb4b3cec91891bed9a0c179d2c913d27e (diff)
downloadandroid_packages_apps_Trebuchet-77ba6b9cad542a78910b6d7c638a1254b31d79ab.tar.gz
android_packages_apps_Trebuchet-77ba6b9cad542a78910b6d7c638a1254b31d79ab.tar.bz2
android_packages_apps_Trebuchet-77ba6b9cad542a78910b6d7c638a1254b31d79ab.zip
Merge "Fixing adjascent pages not visible when starting animation" into ub-launcher3-calgary
Diffstat (limited to 'src')
-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() {