diff options
author | Vaclav Kadlcik <vaclav.kadlcik@i.cz> | 2006-05-07 23:14:11 +0200 |
---|---|---|
committer | Peter Osterlund <petero2@telia.com> | 2006-05-07 23:14:11 +0200 |
commit | 470e6feb3ac676c13868ca4fb14180d32cadfc71 (patch) | |
tree | 5b26ee59d8d641906340ac274e430e12223980c9 /synclient.c | |
parent | 9db4f87799188c14bcb797b86f06ba59e7759535 (diff) |
Add new parameter "SingleTapTimeout".
This patch adds a new parameter - "SingleTapTimeout" - to control the
"2A -> SINGLETAP" transition.
This gives greater control of tap behavior. For exmple, it is possible
to disable tap-and-drag by setting the parameter to 0.
Diffstat (limited to 'synclient.c')
-rw-r--r-- | synclient.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synclient.c b/synclient.c index e9d72f3..371611a 100644 --- a/synclient.c +++ b/synclient.c @@ -58,6 +58,7 @@ static struct Parameter params[] = { DEFINE_PAR("MaxTapTime", tap_time, PT_INT, 0, 1000), DEFINE_PAR("MaxTapMove", tap_move, PT_INT, 0, 2000), DEFINE_PAR("MaxDoubleTapTime", tap_time_2, PT_INT, 0, 1000), + DEFINE_PAR("SingleTapTimeout", single_tap_timeout, PT_INT, 0, 1000), DEFINE_PAR("ClickTime", click_time, PT_INT, 0, 1000), DEFINE_PAR("FastTaps", fast_taps, PT_BOOL, 0, 1), DEFINE_PAR("EmulateMidButtonTime", emulate_mid_button_time, PT_INT, 0, 1000), |