diff options
author | damien <damien@mandriva.com> | 2001-08-27 13:13:58 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-08-27 13:13:58 +0000 |
commit | c2b1e260ea211c7880549b956565651bb7addd5a (patch) | |
tree | d9cd730366cba7a1fbaf159a4a5b3d95ca8e2dcd | |
parent | a2e9a2fbf2ec2a8c6133871c35442c4155b3306c (diff) | |
download | drakx-c2b1e260ea211c7880549b956565651bb7addd5a.tar drakx-c2b1e260ea211c7880549b956565651bb7addd5a.tar.gz drakx-c2b1e260ea211c7880549b956565651bb7addd5a.tar.bz2 drakx-c2b1e260ea211c7880549b956565651bb7addd5a.tar.xz drakx-c2b1e260ea211c7880549b956565651bb7addd5a.zip |
corrected bad window size
-rw-r--r-- | perl-install/network/netconnect.pm | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 10bf28f3f..e1d50f2e9 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -181,13 +181,9 @@ ifdown eth0 ); my $i=0; map { defined $set_default or do { $_->[1] and $set_default=$i; }; $i++; } @l; - my $e = $in->ask_from(_("Network Configuration Wizard"), - _("Choose the connection you want to configure"), - [ - map { { - label => $_->[0] . if_($_->[1], " - " . _ ($_->[2], $_->[1])), - val => $_->[3], type => 'bool'} } @l - ] + @l = map { $_->[0] = $_->[0] . if_($_->[1], " - " . _ ($_->[2], $_->[1])) } @l; + my $e = $in->ask_from(_("Network Configuration Wizard"), _("Choose the connection you want to configure"), + [ map { { label => $_->[0], val => $_->[1], type => 'bool'} } @l ] ) or goto step_1; # load_conf ($netcnx, $netc, $intf); |