summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2002-12-23 14:40:49 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2002-12-23 14:40:49 +0000
commitb59a5bbe5a60ca4cbb51a8fd6ee8a37fa0c7b70f (patch)
tree7469bfee6dc528567cd978751a348ac8510284e9
parent7a55a1f5fa4ca17b09898e4b2e439b0291214a84 (diff)
downloaddrakx-b59a5bbe5a60ca4cbb51a8fd6ee8a37fa0c7b70f.tar
drakx-b59a5bbe5a60ca4cbb51a8fd6ee8a37fa0c7b70f.tar.gz
drakx-b59a5bbe5a60ca4cbb51a8fd6ee8a37fa0c7b70f.tar.bz2
drakx-b59a5bbe5a60ca4cbb51a8fd6ee8a37fa0c7b70f.tar.xz
drakx-b59a5bbe5a60ca4cbb51a8fd6ee8a37fa0c7b70f.zip
fix 'bold' advertisements
-rw-r--r--perl-install/install_steps_gtk.pm19
1 files changed, 10 insertions, 9 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index eeea9e05b..e4aab7160 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -469,7 +469,7 @@ sub installPackages {
my $decy = 0;
my $first = 1;
foreach (@data) {
- my ($text, $x, $y, $area_width, $area_height, $_bold) = @$_;
+ my ($text, $x, $y, $area_width, $area_height, $bold) = @$_;
my ($width, $_height, $lines, $widths, $heights, $_ascents, $_descents) =
get_text_coord($text, $darea, $area_width, $area_height, 1, 0, 1, 1);
if ($first && $icon) {
@@ -484,14 +484,15 @@ sub installPackages {
$yicon > $y + ${$heights}[0] and $decy = $yicon - ($y + ${$heights}[$i]);
foreach (@{$lines}) {
my $layout = $darea->create_pango_layout($_);
- $darea->window->draw_layout($darea->style->white_gc,
- ($dx-$width)/2 + $x + ${$widths}[$i],
- ($first ? 0 : $decy) + $y + ${$heights}[$i],
- $layout);
- $darea->window->draw_layout($darea->style->white_gc,
- ($dx-$width)/2 + $x + ${$widths}[$i] + 1,
- ($first ? 0 : $decy) + $y + ${$heights}[$i],
- $layout);
+ my $draw_lay = sub {
+ my ($gc, $decx, $decy) = @_;
+ $darea->window->draw_layout($gc,
+ ($dx-$width)/2 + $x + ${$widths}[$i] + $decx,
+ ($first ? 0 : $decy) + $y + ${$heights}[$i] + $decy,
+ $layout);
+ };
+ $bold and $draw_lay->($darea->style->black_gc, 1, 1);
+ $draw_lay->($darea->style->white_gc, 0, 0);
$layout->unref;
$i++;
}