diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-19 10:05:32 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-19 10:05:32 +0000 |
commit | 0f94b7d3578a88e126f9675740821c8f2bc6c48a (patch) | |
tree | 5fa2ee7a055161746e5c8297b3d6b6911e48a61a | |
parent | 85bd39ce85fd41a5e6fc5c0b91b3c502cebd5e0b (diff) | |
download | drakx-backup-do-not-use-0f94b7d3578a88e126f9675740821c8f2bc6c48a.tar drakx-backup-do-not-use-0f94b7d3578a88e126f9675740821c8f2bc6c48a.tar.gz drakx-backup-do-not-use-0f94b7d3578a88e126f9675740821c8f2bc6c48a.tar.bz2 drakx-backup-do-not-use-0f94b7d3578a88e126f9675740821c8f2bc6c48a.tar.xz drakx-backup-do-not-use-0f94b7d3578a88e126f9675740821c8f2bc6c48a.zip |
use radio button instead of optionmenu if possible (aka not too many
network interfaces)
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
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}); |