diff options
Diffstat (limited to 'perl-install/standalone/mousedrake')
-rwxr-xr-x | perl-install/standalone/mousedrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/mousedrake b/perl-install/standalone/mousedrake index 09d4d8d59..10e166c0d 100755 --- a/perl-install/standalone/mousedrake +++ b/perl-install/standalone/mousedrake @@ -31,7 +31,7 @@ if (!$mouse || !$::auto) { my $name = $in->ask_from_treelistf('', _("Please, choose the type of your mouse."), '|', sub { join '|', map { translate($_) } split '\|', $_[0] }, [ mouse::fullnames ], - $mouse->{type} . '|' . $mouse->{name}); + $mouse->{type} . '|' . $mouse->{name}) || goto begin; $mouse = mouse::fullname2mouse($name); if ($mouse->{device} eq "usbmouse") { |