diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-19 14:15:53 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-19 14:15:53 +0000 |
commit | 4a89c725392fcb49befc0a60d251d75d9962b6b5 (patch) | |
tree | 77b56c05f136dddf9f90deb6befe13d1d0dce531 /perl-install/mygtk2.pm | |
parent | b323dd3df0352e75bd2bacf544246797e83ce6ae (diff) | |
download | drakx-backup-do-not-use-4a89c725392fcb49befc0a60d251d75d9962b6b5.tar drakx-backup-do-not-use-4a89c725392fcb49befc0a60d251d75d9962b6b5.tar.gz drakx-backup-do-not-use-4a89c725392fcb49befc0a60d251d75d9962b6b5.tar.bz2 drakx-backup-do-not-use-4a89c725392fcb49befc0a60d251d75d9962b6b5.tar.xz drakx-backup-do-not-use-4a89c725392fcb49befc0a60d251d75d9962b6b5.zip |
restore banner on pop up messages (#33753)
the tricky part here is we need to differentiate the case when the empty box
given in ugtk2.pm was really meant to be discarded (eg: diskdrake during
install), but don't want to discard the child if it's useful (wait_message)
Diffstat (limited to 'perl-install/mygtk2.pm')
-rw-r--r-- | perl-install/mygtk2.pm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 2278a8b93..2d6ea61f9 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -585,11 +585,16 @@ sub _gtk__MagicWindow { any { !$_->isa('Gtk2::DrawingArea') && $_->visible } $::WizardTable->get_children; }; - my $sub_child = delete $opts->{child} or internal_error("missing child"); + my $sub_child = delete $opts->{child}; my $provided_banner = delete $opts->{banner}; + if ($pop_it && $provided_banner) { + $sub_child = gtknew('VBox', children => [ 0, $provided_banner, if_($sub_child, 1, $sub_child) ]); + } else { + $sub_child ||= gtknew('VBox'); + } + if ($pop_it) { - $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)) : |