diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-11-04 17:36:07 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-11-04 17:36:07 +0000 |
commit | 9f51f1c944a7eff121aa4c359c4bfa56ac312006 (patch) | |
tree | effb19517c38d738481f3379da952df5e1cc6645 | |
parent | 5e2b3514089a9aabde4a6724a5214f56affa2573 (diff) | |
download | drakx-9f51f1c944a7eff121aa4c359c4bfa56ac312006.tar drakx-9f51f1c944a7eff121aa4c359c4bfa56ac312006.tar.gz drakx-9f51f1c944a7eff121aa4c359c4bfa56ac312006.tar.bz2 drakx-9f51f1c944a7eff121aa4c359c4bfa56ac312006.tar.xz drakx-9f51f1c944a7eff121aa4c359c4bfa56ac312006.zip |
rework drakboot --splash layout now that console logo support has been removed
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rwxr-xr-x | perl-install/standalone/drakboot | 11 |
2 files changed, 7 insertions, 6 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index a546a9d34..4e34a0e61 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -2,6 +2,8 @@ o only display Help button in install - remove CONSOLE_LOGO support - kill draksplash +- drakboot + o rework UI layout to account for CONSOLE_LOGO support removal Version 12.77 - 30 October 2009 diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 07c8443d8..28f9bc750 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -148,16 +148,15 @@ sub splash_choice() { run_boot_window(N("Graphical boot theme selection"), [ 1, gtknew('VBox', spacing => 5, border_width => 5, children => [ - 0, gtknew('HBox', spacing => 5, children_tight => [ gtknew('Label', text => N("Graphical boot mode:")), $mode_combo ]), + 0, gtknew('HBox', padding => 12, spacing => 5, children_tight => [ gtknew('Label', text => N("Graphical boot mode:")), $mode_combo ]), 0, $splash_box = gtknew('HBox', sensitive => $theme->{enabled}, children_loose => [ gtkadd(gtkcreate_frame(N("Theme")), - gtknew('VBox', spacing => 5, children_tight => [ - $theme_combo ])), - gtknew('VSeparator'), - gtknew('VBox', spacing => 5, children_tight => [ $boot_pic ]) ]), - 0, gtknew('Button', text => N("Create new theme"), clicked => sub { exec '/usr/sbin/draksplash' }) ]), + gtknew('VBox', border_width => 12, spacing => 12, children_tight => [ + $theme_combo, $boot_pic ])), ]), + ]), ], sub { + bootsplash::set_logo_console($theme->{keep_logo}); if ($theme->{enabled}) { bootsplash::switch($theme->{name}); } else { |