diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-07-24 17:32:44 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-07-24 17:32:44 +0000 |
commit | d708765778215d877d8c2e31b770775cc8e20bfe (patch) | |
tree | 1a62313eb9ba2240b036c5d3475f9a7f2319e621 /perl-install/install/gtk.pm | |
parent | ab06e88a367e81769cd8d228dc977a03c79de737 (diff) | |
download | drakx-d708765778215d877d8c2e31b770775cc8e20bfe.tar drakx-d708765778215d877d8c2e31b770775cc8e20bfe.tar.gz drakx-d708765778215d877d8c2e31b770775cc8e20bfe.tar.bz2 drakx-d708765778215d877d8c2e31b770775cc8e20bfe.tar.xz drakx-d708765778215d877d8c2e31b770775cc8e20bfe.zip |
(create_steps_window) align step titles to the right too
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r-- | perl-install/install/gtk.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm index 65b05744e..e42b7542f 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -111,8 +111,9 @@ 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>' . $_[0] . '</b>', widget_name => 'Step-categories') + gtknew('HBox', children => [ + 1, '', + 0, gtknew('Label', text_markup => '<b>' . $_[0] . '</b>', widget_name => 'Step-categories') ]); }; |