diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-09-10 07:18:53 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-09-10 07:18:53 +0000 |
commit | 98f93f7c196d2829433544bdde3e47aaf433c0a9 (patch) | |
tree | c559171c5812f319661c6c1f3ed7a47eb9a92c25 | |
parent | 6ca815e61043d9c0f86d9ef08f8a2e221aba8ccf (diff) | |
download | drakx-98f93f7c196d2829433544bdde3e47aaf433c0a9.tar drakx-98f93f7c196d2829433544bdde3e47aaf433c0a9.tar.gz drakx-98f93f7c196d2829433544bdde3e47aaf433c0a9.tar.bz2 drakx-98f93f7c196d2829433544bdde3e47aaf433c0a9.tar.xz drakx-98f93f7c196d2829433544bdde3e47aaf433c0a9.zip |
(enable_framebuffer) do not kill the whole wizard when embedded
-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 5c57fcae7..a2b81a559 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -329,6 +329,6 @@ Be sure your video card supports the mode you choose."), } }; die if $@ && $@ !~ /^wizcancel/; - $::WizardWindow->destroy; + $::WizardWindow->destroy unless $::isEmbedded; $vga; } |