diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-03 12:25:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-03 12:25:44 +0000 |
commit | 62135b5ce9b002b7d6b676d0183b985e1c23900c (patch) | |
tree | 6b193dfaf1639c2a47aa24d2e6c784382802c4c5 /perl-install/install/gtk.pm | |
parent | 19ae9c1a29838272ffd05762bd825b302f8d8450 (diff) | |
download | drakx-62135b5ce9b002b7d6b676d0183b985e1c23900c.tar drakx-62135b5ce9b002b7d6b676d0183b985e1c23900c.tar.gz drakx-62135b5ce9b002b7d6b676d0183b985e1c23900c.tar.bz2 drakx-62135b5ce9b002b7d6b676d0183b985e1c23900c.tar.xz drakx-62135b5ce9b002b7d6b676d0183b985e1c23900c.zip |
- steps window: do not underline categories (Installation, Configuration)
(as suggested by Anne)
Diffstat (limited to 'perl-install/install/gtk.pm')
-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 b004181f4..b12245ac9 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -112,7 +112,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_markup => '<b><u>' . $_[0] . '</u></b>', widget_name => 'Step-categories') + gtknew('Label', text_markup => '<b>' . $_[0] . '</b>', widget_name => 'Step-categories') ]); }; |