From cf563e5f2defaffc08f5fa8ea35d2250a3bb486b Mon Sep 17 00:00:00 2001 From: Tony Wickham Date: Wed, 2 May 2018 12:03:22 -0700 Subject: [PATCH] Add a quick scrub threshold Change-Id: I184ca2bd3d97e58f8fe8841a66571ca101ee3dc2 --- quickstep/src/com/android/quickstep/QuickScrubController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstep/src/com/android/quickstep/QuickScrubController.java b/quickstep/src/com/android/quickstep/QuickScrubController.java index 7bb9877e9b..adc245ba69 100644 --- a/quickstep/src/com/android/quickstep/QuickScrubController.java +++ b/quickstep/src/com/android/quickstep/QuickScrubController.java @@ -43,7 +43,7 @@ public class QuickScrubController implements OnAlarmListener { * Snap to a new page when crossing these thresholds. The first and last auto-advance. */ private static final float[] QUICK_SCRUB_THRESHOLDS = new float[] { - 0.05f, 0.35f, 0.65f, 0.95f + 0.04f, 0.27f, 0.50f, 0.73f, 0.96f }; private static final String TAG = "QuickScrubController";