summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2012-02-23 16:28:37 -0800
committerMichael Jurka <mikejurka@google.com>2012-02-23 16:28:37 -0800
commita8352d22afd3b78ab01ded90ad1674599100fda5 (patch)
treee53a6468d041733420292d20e6cb0c30d7c1bcb0 /src/com/android/launcher2
parent72d598400da7cef9c7fc4f99bb1fcd7ff0710011 (diff)
downloadandroid_packages_apps_Trebuchet-a8352d22afd3b78ab01ded90ad1674599100fda5.tar.gz
android_packages_apps_Trebuchet-a8352d22afd3b78ab01ded90ad1674599100fda5.tar.bz2
android_packages_apps_Trebuchet-a8352d22afd3b78ab01ded90ad1674599100fda5.zip
Cancel scroll indicator fade during allapps/workspace transition
Change-Id: I8661c17adbf0a129730b44641930fb68ba9afed6
Diffstat (limited to 'src/com/android/launcher2')
-rw-r--r--src/com/android/launcher2/AppsCustomizeTabHost.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/android/launcher2/AppsCustomizeTabHost.java b/src/com/android/launcher2/AppsCustomizeTabHost.java
index 4639c57cc..152b21588 100644
--- a/src/com/android/launcher2/AppsCustomizeTabHost.java
+++ b/src/com/android/launcher2/AppsCustomizeTabHost.java
@@ -370,6 +370,9 @@ public class AppsCustomizeTabHost extends TabHost implements LauncherTransitiona
if (toWorkspace) {
// Going from All Apps -> Workspace
setVisibilityOfSiblingsWithLowerZOrder(VISIBLE);
+ // Stop the scrolling indicator - we don't want All Apps to be invalidating itself
+ // during the transition, especially since it has a hardware layer set on it
+ mAppsCustomizePane.cancelScrollingIndicatorAnimations();
} else {
// Going from Workspace -> All Apps
mContent.setVisibility(VISIBLE);