summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-05-18 17:23:02 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-05-19 08:25:32 +1000
commit35191ec094a2006ba290713640dd95c88ca3b0f9 (patch)
tree55637eb71497671472ae24e20824259923974c58
parente0d651c77e3a59086d5f36d1aaf9e6ba80394336 (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>
-rw-r--r--tools/synclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/synclient.c b/tools/synclient.c
index 9978dea..eed0c79 100644
--- a/tools/synclient.c
+++ b/tools/synclient.c
@@ -99,7 +99,7 @@ static struct Parameter params[] = {
{"HorizTwoFingerScroll", PT_BOOL, 0, 1, SYNAPTICS_PROP_SCROLL_TWOFINGER, 8, 1},
{"MinSpeed", PT_DOUBLE, 0, 1.0, SYNAPTICS_PROP_SPEED, 0, /*float */ 0},
{"MaxSpeed", PT_DOUBLE, 0, 1.0, SYNAPTICS_PROP_SPEED, 0, /*float */ 1},
- {"AccelFactor", PT_DOUBLE, 0, 0.2, SYNAPTICS_PROP_SPEED, 0, /*float */ 2},
+ {"AccelFactor", PT_DOUBLE, 0, 1.0, SYNAPTICS_PROP_SPEED, 0, /*float */ 2},
{"TrackstickSpeed", PT_DOUBLE, 0, 200.0, SYNAPTICS_PROP_SPEED, 0, /*float */ 3},
{"EdgeMotionMinZ", PT_INT, 1, 255, SYNAPTICS_PROP_EDGEMOTION_PRESSURE, 32, 0},
{"EdgeMotionMaxZ", PT_INT, 1, 255, SYNAPTICS_PROP_EDGEMOTION_PRESSURE, 32, 1},