diff options
author | Winson Chung <winsonc@google.com> | 2012-04-26 13:13:01 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2012-04-26 13:13:24 -0700 |
commit | d167e2a09f90e5a9a1fe44125b77f879f806615d (patch) | |
tree | 11638701a50fd4e534259afb5d85c7f6f767256e | |
parent | 58039d634cb36da561501ccfafc266e1d83d0b4f (diff) | |
download | packages_apps_trebuchet-d167e2a09f90e5a9a1fe44125b77f879f806615d.zip packages_apps_trebuchet-d167e2a09f90e5a9a1fe44125b77f879f806615d.tar.gz packages_apps_trebuchet-d167e2a09f90e5a9a1fe44125b77f879f806615d.tar.bz2 |
Fixing issue where side pages in all apps were showing. (Bug 6393199)
Change-Id: Ida954e738586a8434a776a23e629bf5d3e06da77
-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 2935cea..6251535 100644 --- a/src/com/android/launcher2/AppsCustomizePagedView.java +++ b/src/com/android/launcher2/AppsCustomizePagedView.java @@ -1419,7 +1419,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 { |