From d58ab4dece6934cc91b2db7984e3538bcaa673e3 Mon Sep 17 00:00:00 2001 From: chrox Date: Tue, 21 Jan 2014 16:52:25 +0800 Subject: [PATCH] decrease HOLD_INTERVAL to 0.5s for better responsiveness --- frontend/ui/gesturedetector.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/ui/gesturedetector.lua b/frontend/ui/gesturedetector.lua index ae265ba85..f15133987 100644 --- a/frontend/ui/gesturedetector.lua +++ b/frontend/ui/gesturedetector.lua @@ -47,7 +47,7 @@ local GestureDetector = { -- all the time parameters are in us DOUBLE_TAP_INTERVAL = 300 * 1000, TWO_FINGER_TAP_DURATION = 300 * 1000, - HOLD_INTERVAL = 1000 * 1000, + HOLD_INTERVAL = 500 * 1000, SWIPE_INTERVAL = 900 * 1000, -- distance parameters DOUBLE_TAP_DISTANCE = 50 * Screen:getDPI() / 167,