diff options
Diffstat (limited to 'perl-install/standalone/net_applet')
-rw-r--r-- | perl-install/standalone/net_applet | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone/net_applet b/perl-install/standalone/net_applet index 43dfad3fb..601201ecf 100644 --- a/perl-install/standalone/net_applet +++ b/perl-install/standalone/net_applet @@ -216,7 +216,8 @@ sub generate_menu { my ($action) = @_; my $name = ref($actions{$action}{name}) eq 'CODE' ? $actions{$action}{name}->($interface) : $actions{$action}{name}; my $launch = $actions{$action}{launch}; - if ($actions{$action}{choices}) { + my @choices = exists $actions{$action}{choices} && $actions{$action}{choices}->(); + if (@choices > 1) { my $selected = $actions{$action}{choice_selected}; gtkshow(create_menu($name, map { my $choice = $_; |