0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 04:02:14 +02:00

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

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;