Add a quick scrub threshold

Change-Id: I184ca2bd3d97e58f8fe8841a66571ca101ee3dc2
This commit is contained in:
Tony Wickham 2018-05-02 12:03:22 -07:00
parent f325b19de3
commit cf563e5f2d
1 changed files with 1 additions and 1 deletions

View File

@ -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";