From f73233a5fd3050284147ce40b18b1a84d2261cb3 Mon Sep 17 00:00:00 2001 From: Prasoon Singh Date: Wed, 8 Apr 2020 13:20:51 +0530 Subject: [PATCH] [e-mod-tizen-screen-reader] Reduce the timeout threshhold of flick to scroll As mouse move is emitted only if difference between down and move event time is greater that 100ms. Due to which when flick is done scrolling could not start. Only if drag is done scrolling starts. Change-Id: I4fdd294ebaca579438a288b0348af8fd6132bad1 Signed-off-by: Prasoon Singh (cherry picked from commit bd6f28fddbc4daa87d2a76681518bde3be14f11a) --- src/e_screen_reader_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/e_screen_reader_config.c b/src/e_screen_reader_config.c index 6e2f26b..a75eff2 100644 --- a/src/e_screen_reader_config.c +++ b/src/e_screen_reader_config.c @@ -19,7 +19,7 @@ _e_mod_config_new(void) _e_mod_config->two_fingers_hover_longpress_timeout = 0.1; _e_mod_config->one_finger_tap_timeout = 0.3; _e_mod_config->one_finger_tap_radius = 100; - _e_mod_config->two_finger_flick_to_scroll_timeout = 100; + _e_mod_config->two_finger_flick_to_scroll_timeout = 50; _e_mod_config->two_finger_flick_to_scroll_min_length = 50; return EINA_TRUE; -- 2.34.1