[e-mod-tizen-screen-reader] Reduce the timeout threshhold of flick to scroll 61/230161/1
authorPrasoon Singh <prasoon.16@samsung.com>
Wed, 8 Apr 2020 07:50:51 +0000 (13:20 +0530)
committerPrasoon Singh <prasoon.16@samsung.com>
Wed, 8 Apr 2020 07:50:51 +0000 (13:20 +0530)
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 <prasoon.16@samsung.com>
src/e_screen_reader_config.c

index 6e2f26b..a75eff2 100644 (file)
@@ -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;