diff options
author | damien <damien@mandriva.com> | 2002-03-06 16:09:25 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2002-03-06 16:09:25 +0000 |
commit | 9bc1067d0ce47439558e1023ea6bf4c465ae2ee4 (patch) | |
tree | 8563d69c363a80166fdeb2ff807727179ca278b9 /perl-install | |
parent | 4284892973d9ca067086d24cfd689524ac681025 (diff) | |
download | drakx-9bc1067d0ce47439558e1023ea6bf4c465ae2ee4.tar drakx-9bc1067d0ce47439558e1023ea6bf4c465ae2ee4.tar.gz drakx-9bc1067d0ce47439558e1023ea6bf4c465ae2ee4.tar.bz2 drakx-9bc1067d0ce47439558e1023ea6bf4c465ae2ee4.tar.xz drakx-9bc1067d0ce47439558e1023ea6bf4c465ae2ee4.zip |
corrected font stuff
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/my_gtk.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm index 6eef0d50f..f3ffe00b6 100644 --- a/perl-install/my_gtk.pm +++ b/perl-install/my_gtk.pm @@ -62,8 +62,9 @@ sub new { my ($y1, $x1) = $im_up->get_size; my ($im_left, $mask_left) = gtkcreate_png($::Wizard_pix_left || "wiz_default_left.png"); my ($y2, $x2) = $im_left->get_size; - $draw1->style->font(Gtk::Gdk::Font->fontset_load("-adobe-utopia-bold-r-normal-*-25-*-100-100-p-*-iso8859-*,*-r-*")); - my $w = $draw1->style->font->string_width($::Wizard_title); + my $style = $draw1->style->copy(); + $style->font(Gtk::Gdk::Font->fontset_load("-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*")); + my $w = $style->font->string_width($::Wizard_title); $draw1->signal_connect(expose_event => sub { my $i; for ($i=0;$i<(540/$y1);$i++) { @@ -71,7 +72,7 @@ sub new { $im_up, 0, 0, 0, $y1*$i, $x1 , $y1 ); $draw1->window->draw_string( - $draw1->style->font, + $style->font, $draw1->style->white_gc, 140+(380-$w)/2, 62, ($::Wizard_title) ); @@ -409,7 +410,6 @@ sub create_pix_text { if (ref($font) eq 'Gtk::Gdk::Font') { $style->font($font); } else { -#- $font ||= _("-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"); $font and $style->font(Gtk::Gdk::Font->fontset_load($font)); } |