diff options
-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 { |