From: Chris Bagwell <[email protected]> The only reason not to immediately go into 2 finger scroll and zoom mode are:
1) Make sure user is not going to do a 2 finger time based gesture (only 2 finger tap supported). Waiting only taptime is fine for this. 2) Wait for some movement of fingers to see if its a zoom vs. scroll. This is movement based and not time based. Reducing time doesn't seem to change behavior here. Signed-off-by: Chris Bagwell <[email protected]> --- src/wcmTouchFilter.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/wcmTouchFilter.c b/src/wcmTouchFilter.c index 433e12f..72cc937 100644 --- a/src/wcmTouchFilter.c +++ b/src/wcmTouchFilter.c @@ -292,7 +292,7 @@ void wcmGestureFilter(WacomDevicePtr priv, int channel) /* process complex two finger gestures */ else { CARD32 ms = GetTimeInMillis(); - int taptime = 2 * common->wcmGestureParameters.wcmTapTime; + int taptime = common->wcmGestureParameters.wcmTapTime; if (ds[0].proximity && ds[1].proximity && (taptime < (ms - ds[0].sample)) && -- 1.7.6 ------------------------------------------------------------------------------ EMC VNX: the world's simplest storage, starting under $10K The only unified storage solution that offers unified management Up to 160% more powerful than alternatives and 25% more efficient. Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev _______________________________________________ Linuxwacom-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel
