diff options
author | Francois Pons <fpons@mandriva.com> | 2001-04-09 09:30:12 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-04-09 09:30:12 +0000 |
commit | 77b361a3f30cc4fc88c9403c1372ada3e7391bd9 (patch) | |
tree | 6ffc1bf10c852f318b7ae9a90b4189146dbd0214 /perl-install/standalone/mousedrake | |
parent | 98b33e00633baca163b32c7eed1dc974f358dce2 (diff) | |
download | drakx-77b361a3f30cc4fc88c9403c1372ada3e7391bd9.tar drakx-77b361a3f30cc4fc88c9403c1372ada3e7391bd9.tar.gz drakx-77b361a3f30cc4fc88c9403c1372ada3e7391bd9.tar.bz2 drakx-77b361a3f30cc4fc88c9403c1372ada3e7391bd9.tar.xz drakx-77b361a3f30cc4fc88c9403c1372ada3e7391bd9.zip |
fixed cancel support.
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") { |