diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-07-11 15:16:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-07-11 15:16:21 +0000 |
commit | 42fc444780c98806fa76ec31013b26580564e668 (patch) | |
tree | d199ddb8cd76745e40d9512ae02cdfa995030d0b | |
parent | 8ac9881c8786508687fceb47594860f9fd742659 (diff) | |
download | drakx-42fc444780c98806fa76ec31013b26580564e668.tar drakx-42fc444780c98806fa76ec31013b26580564e668.tar.gz drakx-42fc444780c98806fa76ec31013b26580564e668.tar.bz2 drakx-42fc444780c98806fa76ec31013b26580564e668.tar.xz drakx-42fc444780c98806fa76ec31013b26580564e668.zip |
fix the detection of the fscking mac ps/2 mouse ("Mouse:USB|1 button: Apple Computer|iMac Mouse [Human Interface Devices|Boot Interface Subclass|Mouse]")
-rw-r--r-- | perl-install/mouse.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm index d6cdec3c1..2caacff2b 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -176,7 +176,7 @@ sub fullname2mouse { my $l = raw2mouse($type, $_); $name eq $l->{name} and return { %$l, %opts }; } - if ($name eq '1 Button') { + if ($name eq '1 Button' || $name eq '1 button') { $name = "Generic 2 Button Mouse"; goto search; } |