diff options
author | Frederic Lepied <flepied@mandriva.com> | 2000-08-31 05:59:06 +0000 |
---|---|---|
committer | Frederic Lepied <flepied@mandriva.com> | 2000-08-31 05:59:06 +0000 |
commit | 8d33ee6f70f9f4333c49c724c120a056e36e2bb7 (patch) | |
tree | 3e5221f7bf8d4834d716bdb8ce5edc288f115d42 | |
parent | 7a9b29dbe29f5c09f3bfff1f36fc469f4256acf2 (diff) | |
download | drakx-backup-do-not-use-8d33ee6f70f9f4333c49c724c120a056e36e2bb7.tar drakx-backup-do-not-use-8d33ee6f70f9f4333c49c724c120a056e36e2bb7.tar.gz drakx-backup-do-not-use-8d33ee6f70f9f4333c49c724c120a056e36e2bb7.tar.bz2 drakx-backup-do-not-use-8d33ee6f70f9f4333c49c724c120a056e36e2bb7.tar.xz drakx-backup-do-not-use-8d33ee6f70f9f4333c49c724c120a056e36e2bb7.zip |
ZAxisMapping for XF 4.
-rw-r--r-- | perl-install/ChangeLog | 4 | ||||
-rw-r--r-- | perl-install/Xconfigurator.pm | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog index 7b728cf6c..9dfabdf9e 100644 --- a/perl-install/ChangeLog +++ b/perl-install/ChangeLog @@ -1,3 +1,7 @@ +2000-08-31 Frederic Lepied <flepied@mandrakesoft.com> + + * Xconfigurator.pm (write_XF86Config): ZAxisMapping for XF 4. + 2000-08-29 dam's <damien@mandrakesoft.com> * moved pppConfig in netconnect.pm and any.pm diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 3bedb4ecb..87d9a9ce1 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -714,6 +714,8 @@ sub write_XF86Config { #- this will enable the "wheel" or "knob" functionality if the mouse supports it print F " ZAxisMapping 4 5\n" if $O->{nbuttons} > 3; print F " ZAxisMapping 6 7\n" if $O->{nbuttons} > 5; + print G qq( Option "ZAxisMapping" "4 5"\n) if $O->{nbuttons} > 3; + print G qq( Option "ZAxisMapping" "6 7"\n) if $O->{nbuttons} > 5; print F "#" unless $O->{XEMU3}; print G "#" unless $O->{XEMU3}; |