summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/gtk.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/interactive/gtk.pm')
-rw-r--r--perl-install/interactive/gtk.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index e3cfce740..1bf642e47 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -578,10 +578,7 @@ sub all_entries {
sub all_focusable_entries {
my ($l) = @_;
- map { $_->{type} eq 'expander'
- ? ($_->{w}->get_expanded ? all_focusable_entries($_->{children}) : ())
- : $_;
- } grep { $_->{focus_w} } @$l;
+ grep { $_->{focus_w} } @$l;
}
sub create_widgets_block {