From bf7978d9e37bd1e148f6e86635518c6e30a6d991 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Thu, 26 May 2016 11:35:42 -0400 Subject: [PATCH] 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 --- 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; } -- 2.7.4