summaryrefslogtreecommitdiffstats
path: root/perl-install/install/gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-07-30 16:12:32 +0000
committerThierry Vignaud <tv@mandriva.org>2008-07-30 16:12:32 +0000
commita8bdcbc1a88dd152af52eae3241d7ef9a806fd43 (patch)
tree326eec3eb72f28abe779aab00bd70240fa5862dd /perl-install/install/gtk.pm
parent34b637c7e772bc1019cf053f551d8598eb45074e (diff)
downloaddrakx-backup-do-not-use-a8bdcbc1a88dd152af52eae3241d7ef9a806fd43.tar
drakx-backup-do-not-use-a8bdcbc1a88dd152af52eae3241d7ef9a806fd43.tar.gz
drakx-backup-do-not-use-a8bdcbc1a88dd152af52eae3241d7ef9a806fd43.tar.bz2
drakx-backup-do-not-use-a8bdcbc1a88dd152af52eae3241d7ef9a806fd43.tar.xz
drakx-backup-do-not-use-a8bdcbc1a88dd152af52eae3241d7ef9a806fd43.zip
(create_steps_window) render step category titles as capital letters too
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r--perl-install/install/gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index 59201f8d1..12e605f3a 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -117,7 +117,7 @@ sub create_steps_window {
my $category = sub {
gtknew('HBox', children => [
1, '',
- 0, gtknew('Label', text_markup => '<b>' . $_[0] . '</b>', widget_name => 'Step-categories')
+ 0, gtknew('Label', text_markup => '<b>' . uc($_[0]) . '</b>', widget_name => 'Step-categories')
]);
};