diff options
author | damien <damien@mandriva.com> | 2002-01-25 14:28:04 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2002-01-25 14:28:04 +0000 |
commit | 511881d8382b67bfe5f80ed3f88f976a953b7a72 (patch) | |
tree | ba8d5aa15f549581ada154d853d315b2b8547ad1 | |
parent | 279dd8fb420793759841d8beb2a87dfee84403a0 (diff) | |
download | drakx-backup-do-not-use-511881d8382b67bfe5f80ed3f88f976a953b7a72.tar drakx-backup-do-not-use-511881d8382b67bfe5f80ed3f88f976a953b7a72.tar.gz drakx-backup-do-not-use-511881d8382b67bfe5f80ed3f88f976a953b7a72.tar.bz2 drakx-backup-do-not-use-511881d8382b67bfe5f80ed3f88f976a953b7a72.tar.xz drakx-backup-do-not-use-511881d8382b67bfe5f80ed3f88f976a953b7a72.zip |
corrected decy
-rw-r--r-- | perl-install/install_steps_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index d8ba74121..b4ef63843 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -577,9 +577,9 @@ sub installPackages { $yicon > $y + ${$heights}[0] and $decy = $yicon - ($y + ${$heights}[$i]); foreach (@{$lines}) { $dbl_area->draw_string($darea->style->font, $gc_text, - ($dx-$width)/2 + $x + ${$widths}[$i], $decy + $y + ${$heights}[$i], $_); + ($dx-$width)/2 + $x + ${$widths}[$i], ( $first ? 0 : $decy ) + $y + ${$heights}[$i], $_); $bold and $dbl_area->draw_string($darea->style->font, $gc_text, - ($dx-$width)/2 + $x + ${$widths}[$i] + 1, $decy + $y + ${$heights}[$i], $_); + ($dx-$width)/2 + $x + ${$widths}[$i] + 1, ( $first ? 0 : $decy ) + $y + ${$heights}[$i], $_); $i++; } $first = 0; |