summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cpmichael@osg.samsung.com>2016-05-26 11:35:42 -0400
committerChris Michael <cpmichael@osg.samsung.com>2016-05-26 11:35:42 -0400
commitbf7978d9e37bd1e148f6e86635518c6e30a6d991 (patch)
treeaedde239e41aa0d541e7ab9fbf9315d36a5cfa38
parent4844034a1aec58d7a26965e0ae9baf722b85f93a (diff)
downloadefl-bf7978d9e37bd1e148f6e86635518c6e30a6d991.tar.gz
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 <cpmichael@osg.samsung.com>
-rw-r--r--src/lib/elput/elput_evdev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/elput/elput_evdev.c b/src/lib/elput/elput_evdev.c
index 7281532926..cb70c637b9 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;
}