diff options
author | Francois Pons <fpons@mandriva.com> | 2001-08-31 16:47:53 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-08-31 16:47:53 +0000 |
commit | 37ccb25e7fb0131d0275edf0f4446e0d832a6d9d (patch) | |
tree | 0977da1816fe2926a46893bafe2a4d211f8eeb0b /perl-install | |
parent | 50400a788dfb5dd77f93f471f0c5cecdad42b319 (diff) | |
download | drakx-37ccb25e7fb0131d0275edf0f4446e0d832a6d9d.tar drakx-37ccb25e7fb0131d0275edf0f4446e0d832a6d9d.tar.gz drakx-37ccb25e7fb0131d0275edf0f4446e0d832a6d9d.tar.bz2 drakx-37ccb25e7fb0131d0275edf0f4446e0d832a6d9d.tar.xz drakx-37ccb25e7fb0131d0275edf0f4446e0d832a6d9d.zip |
added missing AlwaysCore line for second mouse for XF3.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfigurator.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index c37c3d39a..2b3567cd6 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -926,6 +926,7 @@ sub write_XF86Config { print G qq( Option "Protocol" "$O->{XMOUSETYPE}"\n); print F ($id > 1 && " ") . qq( Device "/dev/$O->{device}"\n); print G qq( Option "Device" "/dev/$O->{device}"\n); + print F " AlwaysCore\n" if $id > 1; #- this will enable the "wheel" or "knob" functionality if the mouse supports it print F ($id > 1 && " ") . " ZAxisMapping 4 5\n" if $O->{nbuttons} > 3; print F ($id > 1 && " ") . " ZAxisMapping 6 7\n" if $O->{nbuttons} > 5; |