summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Gotti <jgotti@mandriva.com>2002-09-12 09:29:17 +0000
committerJonathan Gotti <jgotti@mandriva.com>2002-09-12 09:29:17 +0000
commit960ee62ecda80f22975a2c30efc200f8e41fa3c3 (patch)
tree57b054fedc66dba6a21c8e3499b281f5b61f1279
parent88635f835c1d1fc7dc7ff983e2ceca88e477b168 (diff)
downloaddrakx-backup-do-not-use-960ee62ecda80f22975a2c30efc200f8e41fa3c3.tar
drakx-backup-do-not-use-960ee62ecda80f22975a2c30efc200f8e41fa3c3.tar.gz
drakx-backup-do-not-use-960ee62ecda80f22975a2c30efc200f8e41fa3c3.tar.bz2
drakx-backup-do-not-use-960ee62ecda80f22975a2c30efc200f8e41fa3c3.tar.xz
drakx-backup-do-not-use-960ee62ecda80f22975a2c30efc200f8e41fa3c3.zip
resize previews pixmap to be nice when embedded
-rw-r--r--perl-install/bootlook.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/bootlook.pm b/perl-install/bootlook.pm
index fc507969e..c535d649a 100644
--- a/perl-install/bootlook.pm
+++ b/perl-install/bootlook.pm
@@ -144,7 +144,7 @@ my $boot_pixbuf ;
my $boot_pic = gtkpng($themes{'def_thmb'});
my $thm_button = new Gtk::Button(_("Install themes"));
-my $logo_thm = new Gtk::CheckButton(_("Display theme under console"));
+my $logo_thm = new Gtk::CheckButton(_("Display theme\nunder console"));
my $B_create = new Gtk::Button(_("Create new theme"));
my $keep_logo = 1;
$logo_thm->set_active(1);
@@ -165,6 +165,7 @@ $combo{'lilo'}->entry->signal_connect(changed => sub {
my $new_file = $themes{'path'} . $combo{'lilo'}->entry->get_text() . $themes{'lilo'}{'thumb'};
undef($lilo_pixbuf);
$lilo_pixbuf = gtkcreate_png_pixbuf(-r $new_file ? $new_file : $themes{'def_thmb'});
+ $lilo_pixbuf = $lilo_pixbuf->scale_simple(155,116,0);
$lilo_pic->set($lilo_pixbuf->render_pixmap_and_mask(0),'');
});
@@ -173,7 +174,7 @@ $no_bootsplash == 0
local $img_file = $themes{'path'}.$combo{'boot'}->entry->get_text().$themes{'boot'}{'path'}."bootsplash-$cur_res.jpg";
undef($boot_pixmap);
$boot_pixmap = gtkcreate_png_pixbuf( $img_file);
- $boot_pixmap = $boot_pixmap->scale_simple(159,119,0);
+ $boot_pixmap = $boot_pixmap->scale_simple(155,116,0);
$boot_pic->set($boot_pixmap->render_pixmap_and_mask(0),'');
});
@@ -277,7 +278,7 @@ Click on Configure to launch the setup wizard.", $lilogrub),
gtkpack__(new Gtk::VBox(0,5),
_("Themes"),
$combo{'thms'},
- _("\nSelect a theme for\nlilo and bootsplash,\nyou can choose\nthem separatly"),
+ _("\nSelect theme for\nlilo and bootsplash,\nyou can choose\nthem separatly"),
$logo_thm),
gtkpack__(new Gtk::VBox(0,5),
_("Lilo screen"),