diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-08-26 13:58:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-08-26 13:58:21 +0000 |
commit | 5ba2fc39a65b760dc3a552ab82896c80c22d94ca (patch) | |
tree | 8eccb87928c4f45f80227d7b6323a0dbadcba73b | |
parent | 9a762aefa0dd31391b522f0ed9541348a5a50d3f (diff) | |
download | drakx-5ba2fc39a65b760dc3a552ab82896c80c22d94ca.tar drakx-5ba2fc39a65b760dc3a552ab82896c80c22d94ca.tar.gz drakx-5ba2fc39a65b760dc3a552ab82896c80c22d94ca.tar.bz2 drakx-5ba2fc39a65b760dc3a552ab82896c80c22d94ca.tar.xz drakx-5ba2fc39a65b760dc3a552ab82896c80c22d94ca.zip |
(create_steps_window) underline step categories (and render them as bold btw)
-rw-r--r-- | perl-install/install_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index b5139ba0b..5cc8ab7ae 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -129,7 +129,7 @@ sub create_steps_window { $steps{$_} ||= gtknew('Pixbuf', file => "steps_$_") foreach qw(on off done); my $category = sub { gtknew('HBox', children_tight => [ - gtknew('Label', text => $_[0], widget_name => 'Step-categories') + gtknew('Label', text_markup => '<b><u>' . $_[0] . '</u></b>', widget_name => 'Step-categories') ]); }; |