am 08b5dfe0: Reduce the bias towards scrolling a little bit.

Merge commit '08b5dfe0b9df76db513e0a14f4d0e20701e1c2f2'

* commit '08b5dfe0b9df76db513e0a14f4d0e20701e1c2f2':
  Reduce the bias towards scrolling a little bit.
diff --git a/src/com/android/launcher2/SwipeController.java b/src/com/android/launcher2/SwipeController.java
index fe61c2e..642e78d 100644
--- a/src/com/android/launcher2/SwipeController.java
+++ b/src/com/android/launcher2/SwipeController.java
@@ -61,7 +61,7 @@
     public SwipeController(Context context) {
         ViewConfiguration config = ViewConfiguration.get(context);
         mSlopX = config.getScaledTouchSlop();
-        mSlopY = 3 * mSlopX / 2; // make it 50% more biased towards horizontal swiping.
+        mSlopY = 4 * mSlopX / 3; // make it 33% more biased towards horizontal swiping.
         
         DisplayMetrics display = context.getResources().getDisplayMetrics();
         mSwipeDistance = display.heightPixels / 2; // one half of the screen