diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-11-04 17:35:56 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-11-04 17:35:56 +0000 |
commit | 2dc056345303b0c3583eb51729ece0e8032fa4a1 (patch) | |
tree | 50f2956bc28f687805320e46d2e4a98730407690 /perl-install/standalone/drakboot | |
parent | 06baef61639c5819c19a3c049a0b9adedc7e7477 (diff) | |
download | drakx-2dc056345303b0c3583eb51729ece0e8032fa4a1.tar drakx-2dc056345303b0c3583eb51729ece0e8032fa4a1.tar.gz drakx-2dc056345303b0c3583eb51729ece0e8032fa4a1.tar.bz2 drakx-2dc056345303b0c3583eb51729ece0e8032fa4a1.tar.xz drakx-2dc056345303b0c3583eb51729ece0e8032fa4a1.zip |
drakboot: don't try to set console logo
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-x | perl-install/standalone/drakboot | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 3a47d8b1e..07c8443d8 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -152,16 +152,12 @@ sub splash_choice() { 0, $splash_box = gtknew('HBox', sensitive => $theme->{enabled}, children_loose => [ gtkadd(gtkcreate_frame(N("Theme")), gtknew('VBox', spacing => 5, children_tight => [ - $theme_combo, - gtksignal_connect(gtkset_active(gtknew('CheckButton', text => N("Display theme\nunder console")), - $theme->{keep_logo}), - clicked => sub { invbool(\$theme->{keep_logo}) }) ])), + $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' }) ]), ], sub { - bootsplash::set_logo_console($theme->{keep_logo}); if ($theme->{enabled}) { bootsplash::switch($theme->{name}); } else { |