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

This commit is contained in:
Jesse Vincent 2010-02-14 17:23:31 +00:00
parent b6b71b3976
commit defdff1543
1 changed files with 2 additions and 2 deletions

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;