diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-22 15:38:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-22 15:38:51 +0000 |
commit | 185af1911319cdf87678263a7b4ae6e3589f10eb (patch) | |
tree | 87ead17babc6458079eb50d0b3579f9a598584cc /perl-install/mouse.pm | |
parent | 76761ff24d3358147c214490defbab4910201d73 (diff) | |
download | drakx-backup-do-not-use-185af1911319cdf87678263a7b4ae6e3589f10eb.tar drakx-backup-do-not-use-185af1911319cdf87678263a7b4ae6e3589f10eb.tar.gz drakx-backup-do-not-use-185af1911319cdf87678263a7b4ae6e3589f10eb.tar.bz2 drakx-backup-do-not-use-185af1911319cdf87678263a7b4ae6e3589f10eb.tar.xz drakx-backup-do-not-use-185af1911319cdf87678263a7b4ae6e3589f10eb.zip |
(xmouse2xId): add ExplorerPS/2 mouse type id
(xmouse2xId): don't use ExplorerPS/2 during install (since install is xfree3)
Diffstat (limited to 'perl-install/mouse.pm')
-rw-r--r-- | perl-install/mouse.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm index f668e808f..af0f7fca3 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -36,6 +36,7 @@ my %mice = [ 5, 'ps/2', 'ThinkingMousePS/2', __("Kensington Thinking Mouse") ], [ 5, 'netmouse', 'NetMousePS/2', __("Genius NetMouse") ], [ 5, 'netmouse', 'NetScrollPS/2', __("Genius NetScroll") ], + [ 7, 'ps/2', 'ExplorerPS/2', __("Microsoft Explorer") ], ]], 'USB' => @@ -102,11 +103,12 @@ sub xmouse2xId { "SysMouse", "Auto", "AceCad", - "WSMouse", + "ExplorerPS/2", "USB", ); my ($id) = @_; $id = 'BusMouse' if $id eq 'MouseMan'; + $id = 'IMPS/2' if $id eq 'ExplorerPS/2' && $::isInstall; my $i; map_index { $_ eq $id and $i = $::i } @xmousetypes; $i; } |