summaryrefslogtreecommitdiffstats
path: root/perl-install/install/gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-08-26 12:22:13 +0000
committerThierry Vignaud <tv@mandriva.org>2008-08-26 12:22:13 +0000
commit659a94636777910f509451f196d4faa710d068f7 (patch)
tree1068c240450ddcec206362db2ccd87a5cd562cd0 /perl-install/install/gtk.pm
parent0a59cfdadf7abb03f6919778353463463edf2870 (diff)
downloaddrakx-backup-do-not-use-659a94636777910f509451f196d4faa710d068f7.tar
drakx-backup-do-not-use-659a94636777910f509451f196d4faa710d068f7.tar.gz
drakx-backup-do-not-use-659a94636777910f509451f196d4faa710d068f7.tar.bz2
drakx-backup-do-not-use-659a94636777910f509451f196d4faa710d068f7.tar.xz
drakx-backup-do-not-use-659a94636777910f509451f196d4faa710d068f7.zip
(create_steps_window) align category titles like step ones
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r--perl-install/install/gtk.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index 9f3b30b56..36855f148 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -115,9 +115,10 @@ sub create_steps_window {
$steps{$_} ||= gtknew('Pixbuf', file => "steps_$_") foreach qw(on off done);
my $category = sub {
- gtknew('HBox', children => [
+ gtknew('HBox', spacing => 7, children => [
1, '',
- 0, gtknew('Label', text_markup => '<b>' . uc($_[0]) . '</b>', widget_name => 'Step-categories')
+ 0, gtknew('Label', text_markup => '<b>' . uc($_[0]) . '</b>', widget_name => 'Step-categories'),
+ 0, gtknew('Image', file => 'steps_off.png'),
]);
};