diff options
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r-- | perl-install/install_steps_gtk.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index 1b5aa6862..57eb14498 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -526,10 +526,10 @@ sub installPackages { $y + ${$heights}[$i] + $decy, $layout); }; - $draw_lay->($darea->style->black_gc, 1, 1); - $bold and $draw_lay->($darea->style->black_gc, 2, 1); - $draw_lay->($darea->style->white_gc, 0, 0); - $bold and $draw_lay->($darea->style->white_gc, 1, 0); + $draw_lay->($darea->style->white_gc, 1, 1); + $bold and $draw_lay->($darea->style->white_gc, 2, 1); + $draw_lay->($darea->style->black_gc, 0, 0); + $bold and $draw_lay->($darea->style->black_gc, 1, 0); $layout->unref; $i++; } |