summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-19 10:05:32 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-19 10:05:32 +0000
commit0f94b7d3578a88e126f9675740821c8f2bc6c48a (patch)
tree5fa2ee7a055161746e5c8297b3d6b6911e48a61a /perl-install
parent85bd39ce85fd41a5e6fc5c0b91b3c502cebd5e0b (diff)
downloaddrakx-0f94b7d3578a88e126f9675740821c8f2bc6c48a.tar
drakx-0f94b7d3578a88e126f9675740821c8f2bc6c48a.tar.gz
drakx-0f94b7d3578a88e126f9675740821c8f2bc6c48a.tar.bz2
drakx-0f94b7d3578a88e126f9675740821c8f2bc6c48a.tar.xz
drakx-0f94b7d3578a88e126f9675740821c8f2bc6c48a.zip
use radio button instead of optionmenu if possible (aka not too many
network interfaces)
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/network/netconnect.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index fd405bde4..b50ba6c4b 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -524,7 +524,7 @@ killall pppd
}
},
name => N("Select the network interface to configure:"),
- data => [ { label => N("Net Device"), val => \$ntf_name, list => [ detect_devices::getNet() ], allow_empty_list => 1 } ],
+ data => [ { label => N("Net Device"), type => "list", val => \$ntf_name, list => [ detect_devices::getNet() ], allow_empty_list => 1 } ],
post => sub {
delete $ethntf->{$_} foreach keys %$ethntf;
add2hash($ethntf, $intf->{$ntf_name});