Reduce the bias towards scrolling a little bit.

I was missing some zooms now.
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