From 585ef045812a5c07817851971b8e2ae2880f96d2 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 7 Aug 2007 14:40:35 +0000 Subject: (summary_prompt) render titles in bold --- perl-install/install/NEWS | 4 +++- perl-install/install/steps_gtk.pm | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'perl-install/install') diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2f76c8a78..fa35f626f 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,6 @@ -- reorder steps according to specs +- summary screen: + o reorder steps according to specs + o render titles in bold - restore progress bar when formatting ext3 - fix range max value >2TB when creating a partition (useful for LVs >2TB) diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 12a99fc48..944153066 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -561,7 +561,7 @@ sub summary_prompt { foreach my $e (@$l) { if ($group ne $e->{group}) { $group = $e->{group}; - push @table, [ gtknew('HBox', children_tight => [ $group ]), '' ]; + push @table, [ gtknew('HBox', children_tight => [ gtknew('Title1', label => escape_text_for_TextView_markup_format($group)) ]), '' ]; } $e->{widget} = gtknew('WrappedLabel', width => $::real_windowwidth * 0.72); -- cgit v1.2.1