summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-05-19 08:43:29 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-05-19 08:43:29 +1000
commit553106362973f4938e0a03a4178c97b0ce0ff0f1 (patch)
tree162981093445e9ca935595b0d6f153b01b526593
parent4b12887fbd4ae82196b4e64beef0118905c5aa38 (diff)
synclient: up max value for AccelFactor to 1.0
There's no real reason to restrict AccelFactor to 0.2, the driver itself doesn't restrict AccelFactor either. Upwards of 1.0 it's hard to spot any real differences in speed though, so 1.0 seems like a sensible maximum. Red Hat Bug 462574 <https://bugzilla.redhat.com/show_bug.cgi?id=462574> Reported-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Henrik Rydberg <rydberg@euromail.se> (cherry picked from commit 35191ec094a2006ba290713640dd95c88ca3b0f9) Conflicts: tools/synclient.c
-rw-r--r--tools/synclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/synclient.c b/tools/synclient.c
index 2ebd458..99d83f0 100644
--- a/tools/synclient.c
+++ b/tools/synclient.c
@@ -131,7 +131,7 @@ static struct Parameter params[] = {
SYNAPTICS_PROP_SPEED, 0, /*float */ 0),
DEFINE_PAR("MaxSpeed", max_speed, PT_DOUBLE, 0, 1.0,
SYNAPTICS_PROP_SPEED, 0, /*float */ 1),
- DEFINE_PAR("AccelFactor", accl, PT_DOUBLE, 0, 0.2,
+ DEFINE_PAR("AccelFactor", accl, PT_DOUBLE, 0, 1.0,
SYNAPTICS_PROP_SPEED, 0, /*float */ 2),
DEFINE_PAR("TrackstickSpeed", trackstick_speed, PT_DOUBLE, 0, 200.0,
SYNAPTICS_PROP_SPEED, 0, /*float */ 3),