From 08e6d01928dc7199d65651666abcd243c174b0ad Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 22 Feb 2020 09:30:12 +0530 Subject: [PATCH] Slightly increase tap threshold --- src/pyj/read_book/touch.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/touch.pyj b/src/pyj/read_book/touch.pyj index 58fab95b38..fe1b12821b 100644 --- a/src/pyj/read_book/touch.pyj +++ b/src/pyj/read_book/touch.pyj @@ -6,7 +6,7 @@ from read_book.globals import get_boss, ui_operations from read_book.viewport import scroll_viewport HOLD_THRESHOLD = 750 # milliseconds -TAP_THRESHOLD = 7 # pixels +TAP_THRESHOLD = 8 # pixels TAP_LINK_THRESHOLD = 5 # pixels PINCH_THRESHOLD = 10 # pixels LONG_TAP_THRESHOLD = 500 # milliseconds