diff options
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index f4ba5a7c6..f508c9e96 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -748,7 +748,7 @@ sub new { $o->{pop_it} ||= $pop_it || $::WizardTable && do { my @l = $::WizardTable->get_children; pop @l if !$::isInstall; #- don't take into account the DrawingArea - @l && $l[-1]->visible; + any { $_->visible } @l; }; if ($::isWizard && !$o->{pop_it}) { |