diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-04-19 12:27:06 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-04-19 12:27:06 +0000 |
commit | c5dbe312725926f2a7fd00d0dcee65f4996353f3 (patch) | |
tree | 9f094d8450334a00d3f06877f41032ff695a461f /perl-install/mouse.pm | |
parent | 8f1d0153bac6493b6c5de63b940bb6219d9087ab (diff) | |
download | drakx-c5dbe312725926f2a7fd00d0dcee65f4996353f3.tar drakx-c5dbe312725926f2a7fd00d0dcee65f4996353f3.tar.gz drakx-c5dbe312725926f2a7fd00d0dcee65f4996353f3.tar.bz2 drakx-c5dbe312725926f2a7fd00d0dcee65f4996353f3.tar.xz drakx-c5dbe312725926f2a7fd00d0dcee65f4996353f3.zip |
using same mouse for alternate_install should be useless
remove it for xbox controller, thus making this option obsolete
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 20d23f58f..52b653beb 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -291,7 +291,7 @@ sub detect { $modules_conf->get_probeall("usb-interface") and eval { modules::load('usbhid') }; if (my $mouse_nb = scalar grep { /^H: Handlers=mouse/ } cat_('/proc/bus/input/devices')) { if (is_xbox()) { - return fullname2mouse('Universal|Microsoft Xbox Controller S', if_($::isInstall, alternate_install => fullname2mouse('Universal|Microsoft Xbox Controller S'))); + return fullname2mouse('Universal|Microsoft Xbox Controller S'); } my $univ_mouse = fullname2mouse('Universal|Any PS/2 & USB mice', wacom => \@wacom); if (my ($synaptics_touchpad) = detect_devices::getSynapticsTouchpads()) { |