diff options
author | Joseph P. Skudlarek <Jskud@briareus.(none)> | 2007-07-06 15:07:01 +0200 |
---|---|---|
committer | Peter Osterlund <petero2@telia.com> | 2007-07-06 15:07:01 +0200 |
commit | 0ce431dc5291d95f4b3e78f9fb1c9e0be5de5abd (patch) | |
tree | 07c1ab8aa30f69c77dbb5c0492d2c6be3e463da9 | |
parent | f6ccc31c29c9dfefd033ec1c5be6fdc11206bffb (diff) |
Repair mismatch between driver and client regarding parameter names.
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | manpages/synaptics.5 | 4 | ||||
-rw-r--r-- | synclient.c | 4 |
3 files changed, 5 insertions, 5 deletions
@@ -53,7 +53,7 @@ Section "InputDevice" Driver "synaptics" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" -# enable SHMCOnfig if you want to enable synclient +# enable SHMConfig if you want to enable synclient # NB: enabling SHMConfig is insecure, since any user can invoke it # Option "SHMConfig" "on" Option "LeftEdge" "1700" diff --git a/manpages/synaptics.5 b/manpages/synaptics.5 index 702d95f..14be846 100644 --- a/manpages/synaptics.5 +++ b/manpages/synaptics.5 @@ -203,12 +203,12 @@ If on, the left/right buttons generate button 6/7 events. . If off, the left/right buttons both generate button 2 events. .TP -\fBUpDownRepeat\fR (Bool) +\fBUpDownScrollRepeat\fR (Bool) If on, and the up/down buttons are used for scrolling (\fBUpDownScrolling\fR), these buttons will send auto-repeating 4/5 events, with the delay between repeats determined by \fBScrollButtonRepeat\fR. .TP -\fBLeftRightRepeat\fR (Bool) +\fBLeftRightScrollRepeat\fR (Bool) If on, and the left/right buttons are used for scrolling (\fBLeftRightScrolling\fR), these buttons will send auto-repeating 6/7 events, with the delay between repeats determined by \fBScrollButtonRepeat\fR. diff --git a/synclient.c b/synclient.c index 6bf3ed0..ff73cd0 100644 --- a/synclient.c +++ b/synclient.c @@ -81,8 +81,8 @@ static struct Parameter params[] = { DEFINE_PAR("EdgeMotionUseAlways", edge_motion_use_always, PT_BOOL, 0, 1), DEFINE_PAR("UpDownScrolling", updown_button_scrolling, PT_BOOL, 0, 1), DEFINE_PAR("LeftRightScrolling", leftright_button_scrolling, PT_BOOL, 0, 1), - DEFINE_PAR("UpDownRepeat", updown_button_repeat, PT_BOOL, 0, 1), - DEFINE_PAR("LeftRightRepeat", leftright_button_repeat, PT_BOOL, 0, 1), + DEFINE_PAR("UpDownScrollRepeat", updown_button_repeat, PT_BOOL, 0, 1), + DEFINE_PAR("LeftRightScrollRepeat",leftright_button_repeat, PT_BOOL, 0, 1), DEFINE_PAR("ScrollButtonRepeat", scroll_button_repeat, PT_INT, SBR_MIN , SBR_MAX), DEFINE_PAR("TouchpadOff", touchpad_off, PT_INT, 0, 2), DEFINE_PAR("GuestMouseOff", guestmouse_off, PT_BOOL, 0, 1), |