diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index e96ea9fa2..08f1f208a 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- fix blocking wait_message (when they pop) (#33676, #33670) - advertising: restore support for $title in .pl files (wrongly dropped in 10.4.195) - localization: o fix installing packages according to desktop diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 660b5fa85..2278a8b93 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -589,7 +589,7 @@ sub _gtk__MagicWindow { my $provided_banner = delete $opts->{banner}; if ($pop_it) { - $sub_child = gtknew('VBox', children_tight => [ $provided_banner ]) if $provided_banner; + $sub_child ||= gtknew('VBox', children_tight => [ $provided_banner ]) if $provided_banner; $opts->{child} = $::isInstall ? gtknew('Frame', shadow_type => 'out', child => gtknew('Frame', shadow_type => 'none', border_width => 3, child => $sub_child)) : |