diff options
author | Gabriele Mazzotta <gabriele.mzt@gmail.com> | 2015-01-09 17:01:42 +0100 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2015-01-12 11:08:56 +1000 |
commit | 383355fa5f536205759f10efa99eaec4e5089376 (patch) | |
tree | d27174b5cebce1fae57c6a81e08a91b4687bc4ca | |
parent | a05894d169be42f03d21fb8287da902d8c24c566 (diff) |
Remove FastTap leftovers
FastTap was removed with d14ea867ad5d ("Purge fast-taps option"),
remove all of what remained.
Signed-off-by: Gabriele Mazzotta <gabriele.mzt@gmail.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | include/synaptics-properties.h | 2 | ||||
-rw-r--r-- | man/synaptics.man | 3 | ||||
-rw-r--r-- | tools/synclient.c | 1 |
3 files changed, 1 insertions, 5 deletions
diff --git a/include/synaptics-properties.h b/include/synaptics-properties.h index 32ab2e1..0f79b64 100644 --- a/include/synaptics-properties.h +++ b/include/synaptics-properties.h @@ -51,7 +51,7 @@ /* 8 bit (BOOL) */ #define SYNAPTICS_PROP_CLICKPAD "Synaptics ClickPad" -/* 8 bit (BOOL) */ +/* 8 bit (BOOL), <deprecated> */ #define SYNAPTICS_PROP_TAP_FAST "Synaptics Tap FastTap" /* 32 bit */ diff --git a/man/synaptics.man b/man/synaptics.man index 76756be..7083b3a 100644 --- a/man/synaptics.man +++ b/man/synaptics.man @@ -591,7 +591,6 @@ A too long value can cause undesirable autorepeat in scroll bars and a too small value means that visual feedback from the gui application you are interacting with is harder to see. . -For this parameter to have any effect, "FastTaps" has to be disabled. .SS Acceleration The MinSpeed, MaxSpeed and AccelFactor parameters control the pointer motion speed. @@ -967,8 +966,6 @@ The following options are no longer part of the driver configuration: .TP .BI "Option \*qTrackstickSpeed\*q \*q" float \*q .TP -.BI "Option \*qFastTaps\*q \*q" boolean \*q -.TP .BI "Option \*qEdgeMotionMinZ\*q \*q" integer \*q .TP .BI "Option \*qEdgeMotionMaxZ\*q \*q" integer \*q diff --git a/tools/synclient.c b/tools/synclient.c index ac31a66..32bf91f 100644 --- a/tools/synclient.c +++ b/tools/synclient.c @@ -86,7 +86,6 @@ static struct Parameter params[] = { {"MaxDoubleTapTime", PT_INT, 0, 1000, SYNAPTICS_PROP_TAP_DURATIONS,32, 1}, {"SingleTapTimeout", PT_INT, 0, 1000, SYNAPTICS_PROP_TAP_DURATIONS,32, 0}, {"ClickTime", PT_INT, 0, 1000, SYNAPTICS_PROP_TAP_DURATIONS,32, 2}, - {"FastTaps", PT_BOOL, 0, 1, SYNAPTICS_PROP_TAP_FAST, 8, 0}, {"EmulateMidButtonTime", PT_INT, 0, 1000, SYNAPTICS_PROP_MIDDLE_TIMEOUT,32, 0}, {"EmulateTwoFingerMinZ", PT_INT, 0, 1000, SYNAPTICS_PROP_TWOFINGER_PRESSURE, 32, 0}, {"EmulateTwoFingerMinW", PT_INT, 0, 15, SYNAPTICS_PROP_TWOFINGER_WIDTH, 32, 0}, |