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>
This commit is contained in:
Chris Michael 2016-05-26 11:35:42 -04:00
parent 4844034a1a
commit bf7978d9e3
1 changed files with 1 additions and 0 deletions

View File

@ -524,6 +524,7 @@ _pointer_create(Elput_Seat *seat)
if (!ptr) return NULL;
ptr->seat = seat;
ptr->mouse.threshold = 250;
return ptr;
}