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/ugtk2.pm | |
parent | b323dd3df0352e75bd2bacf544246797e83ce6ae (diff) | |
download | drakx-4a89c725392fcb49befc0a60d251d75d9962b6b5.tar drakx-4a89c725392fcb49befc0a60d251d75d9962b6b5.tar.gz drakx-4a89c725392fcb49befc0a60d251d75d9962b6b5.tar.bz2 drakx-4a89c725392fcb49befc0a60d251d75d9962b6b5.tar.xz drakx-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/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index f4f166238..54088e6d8 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -731,7 +731,6 @@ sub new { pop_it => $o->{pop_it}, $::isInstall ? (banner => Gtk2::Banner->new($icon, $title || (get_default_step_items())[1])) : (), $::isStandalone && $banner_title && $icon ? (banner => Gtk2::Banner->new($icon, $banner_title)) : (), - child => gtknew('VBox'), width => $opts{width}, height => $opts{height}, default_width => $opts{default_width}, default_height => $opts{default_height}, modal => $opts{modal} || $grab || $o->{grab} || $o->{modal} || $o->{transient}, no_Window_Manager => exists $opts{no_Window_Manager} ? $opts{no_Window_Manager} : !$::isStandalone, |