diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-10-01 07:03:06 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-10-01 07:03:06 +0000 |
commit | 679643f2f20ed51be7dee5754174005910a84375 (patch) | |
tree | 5f040cb7b8d1d5162b54da5cde2f586d5aae4baa /perl-install/mouse.pm | |
parent | ad4f2a3a7d1a4014493c60704018dfa3f591a667 (diff) | |
download | drakx-679643f2f20ed51be7dee5754174005910a84375.tar drakx-679643f2f20ed51be7dee5754174005910a84375.tar.gz drakx-679643f2f20ed51be7dee5754174005910a84375.tar.bz2 drakx-679643f2f20ed51be7dee5754174005910a84375.tar.xz drakx-679643f2f20ed51be7dee5754174005910a84375.zip |
(detect) fix synaptics auto-detection
Diffstat (limited to 'perl-install/mouse.pm')
-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 3430c2713..8b6167d86 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -294,7 +294,7 @@ sub detect { if (my $mouse_nb = grep { /^H: Handlers=mouse/ } @input_devices) { my $univ_mouse = fullname2mouse('Universal|Any PS/2 & USB mice', wacom => \@wacom); if (any { m!^N: Name="(?:SynPS/2 Synaptics TouchPad|AlpsPS/2 ALPS TouchPad)"$! } @input_devices) { - $synaptics_mouse = fullname2mouse('PS/2|Synaptics Touchpad'); + $synaptics_mouse = fullname2mouse('Universal|Synaptics Touchpad'); $::isInstall and $synaptics_mouse->{alternate_install} = $univ_mouse; #- don't try to use synpatics at beginning of install $mouse_nb < 2 and return $synaptics_mouse; $univ_mouse->{auxmouse} = $synaptics_mouse; |