diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/gtk.pm | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 9e5353325..4a7392959 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,7 @@ - bootloader-config: o call mkinitrd without "-v" to make it silent (#42992) +- left sidepanel: + o align category titles like step ones Version 11.22 - 21 August 2008 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'), ]); }; |