diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-17 14:31:13 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-17 14:31:13 +0000 |
commit | 6a6f6637fbf6a87f5d58f3c496767b832287478d (patch) | |
tree | 7e16df3118f520fc4dfe681545ca48c1b6320eb6 /perl-install | |
parent | eecd31c5835b1521ca0d3de97822ca72083b9a45 (diff) | |
download | drakx-6a6f6637fbf6a87f5d58f3c496767b832287478d.tar drakx-6a6f6637fbf6a87f5d58f3c496767b832287478d.tar.gz drakx-6a6f6637fbf6a87f5d58f3c496767b832287478d.tar.bz2 drakx-6a6f6637fbf6a87f5d58f3c496767b832287478d.tar.xz drakx-6a6f6637fbf6a87f5d58f3c496767b832287478d.zip |
fix pop_it...
Diffstat (limited to 'perl-install')
-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}) { |