diff options
author | Winson Chung <winsonc@google.com> | 2012-04-26 13:29:03 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-04-26 13:29:03 -0700 |
commit | 4773408efd8bd3b33c97d9512ac8b0742f319c70 (patch) | |
tree | 01b28db7c7170b538f8dfc9875c29cfb879248c5 | |
parent | c9b5d2b9808653a94a4d830d5fb2f0ecda958f1e (diff) | |
parent | d167e2a09f90e5a9a1fe44125b77f879f806615d (diff) | |
download | packages_apps_trebuchet-4773408efd8bd3b33c97d9512ac8b0742f319c70.zip packages_apps_trebuchet-4773408efd8bd3b33c97d9512ac8b0742f319c70.tar.gz packages_apps_trebuchet-4773408efd8bd3b33c97d9512ac8b0742f319c70.tar.bz2 |
Merge "Fixing issue where side pages in all apps were showing. (Bug 6393199)" into jb-dev
-rw-r--r-- | src/com/android/launcher2/AppsCustomizePagedView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher2/AppsCustomizePagedView.java b/src/com/android/launcher2/AppsCustomizePagedView.java index 00a35a5..7b71ff4 100644 --- a/src/com/android/launcher2/AppsCustomizePagedView.java +++ b/src/com/android/launcher2/AppsCustomizePagedView.java @@ -1421,7 +1421,7 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen float alpha; - if (!LauncherApplication.isScreenLarge() || scrollProgress < 0) { + if (scrollProgress < 0) { alpha = scrollProgress < 0 ? mAlphaInterpolator.getInterpolation( 1 - Math.abs(scrollProgress)) : 1.0f; } else { |