[e-mod-tizen-screen-reader] Reduce the timeout threshhold of flick to scroll 01/230201/1 accepted/tizen/unified/20200421.150354 submit/tizen/20200412.213308 submit/tizen/20200414.010532 submit/tizen/20200414.064511 submit/tizen/20200414.100322 submit/tizen/20200416.001154 submit/tizen/20200416.215157 submit/tizen/20200417.234115 submit/tizen/20200419.220844 submit/tizen/20200420.213352
authorPrasoon Singh <prasoon.16@samsung.com>
Wed, 8 Apr 2020 07:50:51 +0000 (13:20 +0530)
committerLukasz Oleksak <l.oleksak@samsung.com>
Wed, 8 Apr 2020 11:11:41 +0000 (11:11 +0000)
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>
(cherry picked from commit bd6f28fddbc4daa87d2a76681518bde3be14f11a)

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;