diff options
author | Peter Osterlund <petero2@telia.com> | 2005-01-05 17:54:29 +0100 |
---|---|---|
committer | Peter Osterlund <petero2@telia.com> | 2006-04-09 04:03:02 +0200 |
commit | 50c7fdc462daa60cf8555edbb35ac6fc9a5a5d80 (patch) | |
tree | 7940ce4feedcfcea4fc9c79a7758f4fbf0f40a32 | |
parent | 7c06552920a09c89f986102ec60869d3dbcb0274 (diff) |
Changed default values corresponding to change
7c06552920a09c89f986102ec60869d3dbcb0274.
-rw-r--r-- | INSTALL | 6 | ||||
-rw-r--r-- | README.alps | 6 | ||||
-rw-r--r-- | synaptics.c | 2 |
3 files changed, 7 insertions, 7 deletions
@@ -65,9 +65,9 @@ Section "InputDevice" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "VertScrollDelta" "100" - Option "MinSpeed" "0.06" - Option "MaxSpeed" "0.12" - Option "AccelFactor" "0.0010" + Option "MinSpeed" "0.09" + Option "MaxSpeed" "0.18" + Option "AccelFactor" "0.0015" Option "SHMConfig" "on" # Option "Repeater" "/dev/ps2mouse" EndSection diff --git a/README.alps b/README.alps index 237f489..3163878 100644 --- a/README.alps +++ b/README.alps @@ -23,9 +23,9 @@ Section "InputDevice" Option "EmulateMidButtonTime" "75" Option "VertScrollDelta" "20" Option "HorizScrollDelta" "20" - Option "MinSpeed" "0.2" - Option "MaxSpeed" "0.5" - Option "AccelFactor" "0.01" + Option "MinSpeed" "0.3" + Option "MaxSpeed" "0.75" + Option "AccelFactor" "0.015" Option "EdgeMotionMinSpeed" "100" Option "EdgeMotionMaxSpeed" "100" Option "UpDownScrolling" "1" diff --git a/synaptics.c b/synaptics.c index 8a75096..151b890 100644 --- a/synaptics.c +++ b/synaptics.c @@ -381,7 +381,7 @@ SynapticsPreInit(InputDriverPtr drv, IDevPtr dev, int flags) str_par = xf86FindOptionValue(local->options, "MinSpeed"); if ((!str_par) || (xf86sscanf(str_par, "%lf", &pars->min_speed) != 1)) - pars->min_speed=0.02; + pars->min_speed=0.09; str_par = xf86FindOptionValue(local->options, "MaxSpeed"); if ((!str_par) || (xf86sscanf(str_par, "%lf", &pars->max_speed) != 1)) pars->max_speed=0.18; |