summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2010-10-14 18:33:38 -0700
committerAdam Cohen <adamcohen@google.com>2010-10-14 18:33:38 -0700
commite45440ef0eb9edcde30767b38099b093c6a0d6b0 (patch)
tree208da8a7f3e3d60fe0a068ba19b66cfae51de65e /src/com
parent7a75bd48bf1d7ab4bc6f288a411467879be10b05 (diff)
downloadandroid_packages_apps_Trebuchet-e45440ef0eb9edcde30767b38099b093c6a0d6b0.tar.gz
android_packages_apps_Trebuchet-e45440ef0eb9edcde30767b38099b093c6a0d6b0.tar.bz2
android_packages_apps_Trebuchet-e45440ef0eb9edcde30767b38099b093c6a0d6b0.zip
Fixing a bug with anti-aliasing during page scrolling
Change-Id: If03e8ce5880d44ed33378e53f59e0c5d39fceb61
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/launcher2/PagedView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher2/PagedView.java b/src/com/android/launcher2/PagedView.java
index 52f4a5e53..11261a575 100644
--- a/src/com/android/launcher2/PagedView.java
+++ b/src/com/android/launcher2/PagedView.java
@@ -80,7 +80,7 @@ public abstract class PagedView extends ViewGroup {
protected final static int TOUCH_STATE_SCROLLING = 1;
protected final static int TOUCH_STATE_PREV_PAGE = 2;
protected final static int TOUCH_STATE_NEXT_PAGE = 3;
- protected final static float ALPHA_QUANTIZE_LEVEL = 0.01f;
+ protected final static float ALPHA_QUANTIZE_LEVEL = 0.0001f;
protected int mTouchState = TOUCH_STATE_REST;