diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-08-30 16:46:21 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 21:28:36 +0100 |
commit | 5f1f2f2560c1c7f6a688eaccc089ca5a43d7f8e2 (patch) | |
tree | 316482f440438acaebfde9a55d41f629950aae72 | |
parent | bfd9b7229992f38240b4bd020cb45bbf5128d396 (diff) | |
download | drakx-5f1f2f2560c1c7f6a688eaccc089ca5a43d7f8e2.tar drakx-5f1f2f2560c1c7f6a688eaccc089ca5a43d7f8e2.tar.gz drakx-5f1f2f2560c1c7f6a688eaccc089ca5a43d7f8e2.tar.bz2 drakx-5f1f2f2560c1c7f6a688eaccc089ca5a43d7f8e2.tar.xz drakx-5f1f2f2560c1c7f6a688eaccc089ca5a43d7f8e2.zip |
visible() => get_visible()
-rw-r--r-- | perl-install/mygtk3.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm index 55bc12884..75a613c16 100644 --- a/perl-install/mygtk3.pm +++ b/perl-install/mygtk3.pm @@ -891,7 +891,7 @@ sub _gtk__MagicWindow { my $pop_it = delete $opts->{pop_it} || !$::isWizard && !$::isEmbedded || $::WizardTable && do { #- do not take into account the wizard banner # FIXME!!! - any { !$_->isa('Gtk3::DrawingArea') && $_->visible } $::WizardTable->get_children; + any { !$_->isa('Gtk3::DrawingArea') && $_->get_visible } $::WizardTable->get_children; }; my $pop_and_reuse = delete $opts->{pop_and_reuse} && $pop_it; |