From 7e59aaf61539198a33fcbded8216119bfbdfa806 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 23 Oct 2003 13:15:56 +0000 Subject: use fast_mouse_probe first in mandrake move --- perl-install/mouse.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/mouse.pm') diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm index 44cd2ca60..766303c10 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -303,7 +303,7 @@ sub detect() { #- at this level, not all possible mice are detected so avoid invoking serial_probe #- which takes a while for its probe. - if ($::isStandalone) { + if ($::isStandalone || $::move) { my $mouse = $fast_mouse_probe->(); $mouse and return { wacom => \@wacom, %$mouse }; } @@ -313,7 +313,7 @@ sub detect() { my ($r, @serial_wacom) = mouseconfig(); push @wacom, @serial_wacom; $r and return { wacom => \@wacom, %$r }; - if (!$::isStandalone) { + if (!$::isStandalone && !$::move) { my $mouse = $fast_mouse_probe->(); $mouse and return { wacom => \@wacom, %$mouse }; } -- cgit v1.2.1