devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bf7978d9e37bd1e148f6e86635518c6e30a6d991
commit bf7978d9e37bd1e148f6e86635518c6e30a6d991 Author: Chris Michael <[email protected]> Date: Thu May 26 11:35:42 2016 -0400 elput: Fix issue where double/triple click was not working As we use the mouse threshold for determining double/triple clicking, it would probably be a good idea if that threshold had a value @fix Signed-off-by: Chris Michael <[email protected]> --- src/lib/elput/elput_evdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elput/elput_evdev.c b/src/lib/elput/elput_evdev.c index 7281532..cb70c63 100644 --- a/src/lib/elput/elput_evdev.c +++ b/src/lib/elput/elput_evdev.c @@ -524,6 +524,7 @@ _pointer_create(Elput_Seat *seat) if (!ptr) return NULL; ptr->seat = seat; + ptr->mouse.threshold = 250; return ptr; } --
