diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-22 20:04:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-22 20:04:52 +0000 |
commit | 8eda95cfd17ba78c28e2e818b36a5ac8c26b1c1c (patch) | |
tree | 5e169c320d98046b123280a201a95c53f70a0333 /perl-install/standalone/drakboot | |
parent | f2ca9ed86130f1be3363ef58eeb4ec25c0283bf8 (diff) | |
download | drakx-8eda95cfd17ba78c28e2e818b36a5ac8c26b1c1c.tar drakx-8eda95cfd17ba78c28e2e818b36a5ac8c26b1c1c.tar.gz drakx-8eda95cfd17ba78c28e2e818b36a5ac8c26b1c1c.tar.bz2 drakx-8eda95cfd17ba78c28e2e818b36a5ac8c26b1c1c.tar.xz drakx-8eda95cfd17ba78c28e2e818b36a5ac8c26b1c1c.zip |
fix the various transient on {rwindow} (or even {window} ?) not working anymore on the MagicWindow
(maybe the code could be simplified since it should now work even when embedded (?))
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 493a4c15b..02486a772 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -63,7 +63,7 @@ my $remove_theme = '/usr/share/bootsplash/scripts/remove-theme'; my $w = ugtk2->new($splash_working ? N("Graphical boot theme selection") : N("System mode")); my $window = $w->{window}; -$::main_window = $w->{rwindow} if !$::isEmbedded; +$::main_window = $w->{real_window} if !$::isEmbedded; $window->signal_connect(delete_event => sub { ugtk2->exit(0) }); unless ($::isEmbedded) { |