summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/PinchAnimationManager.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-05-20 12:48:10 -0700
committerSunny Goyal <sunnygoyal@google.com>2016-05-20 12:49:59 -0700
commitc487bd34ace268dd8be5480ba884baed6096f76e (patch)
tree76526cfcb23abd0699dd7dfc5a62a7d95831c42a /src/com/android/launcher3/PinchAnimationManager.java
parent40902b3cb040eb9ed35c174e41bca9feefe41b73 (diff)
downloadpackages_apps_Trebuchet-c487bd34ace268dd8be5480ba884baed6096f76e.tar.gz
packages_apps_Trebuchet-c487bd34ace268dd8be5480ba884baed6096f76e.tar.bz2
packages_apps_Trebuchet-c487bd34ace268dd8be5480ba884baed6096f76e.zip
Making page indicator an abstract class and implementing some common methods.
Change-Id: I06613428c54f1f086090580db8242cf81f7fb128
Diffstat (limited to 'src/com/android/launcher3/PinchAnimationManager.java')
-rw-r--r--src/com/android/launcher3/PinchAnimationManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher3/PinchAnimationManager.java b/src/com/android/launcher3/PinchAnimationManager.java
index 477b92cc0..c8c8fa4c8 100644
--- a/src/com/android/launcher3/PinchAnimationManager.java
+++ b/src/com/android/launcher3/PinchAnimationManager.java
@@ -194,7 +194,7 @@ public class PinchAnimationManager {
animateShowHideView(INDEX_HOTSEAT, mLauncher.getHotseat(), show);
if (mWorkspace.getPageIndicator() != null) {
// There aren't page indicators in landscape mode on phones, hence the null check.
- animateShowHideView(INDEX_PAGE_INDICATOR, mWorkspace.getPageIndicator().getView(), show);
+ animateShowHideView(INDEX_PAGE_INDICATOR, mWorkspace.getPageIndicator(), show);
}
}