1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Tweak our message swipes to be a little harder to accidentally trigger

This commit is contained in:
Jesse Vincent 2010-01-25 04:28:11 +00:00
parent b702c67529
commit c237ffc803

View File

@ -92,9 +92,9 @@ public class MessageView extends K9Activity
private String mNextMessageUid = null;
private String mPreviousMessageUid = null;
private static final float SWIPE_MIN_DISTANCE_DIP = 100.0f;
private static final float SWIPE_MIN_DISTANCE_DIP = 130.0f;
private static final float SWIPE_MAX_OFF_PATH_DIP = 250f;
private static final float SWIPE_THRESHOLD_VELOCITY_DIP = 200f;
private static final float SWIPE_THRESHOLD_VELOCITY_DIP = 325f;
private GestureDetector gestureDetector;