summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-09-05 15:46:05 +0000
committerThierry Vignaud <tv@mandriva.org>2007-09-05 15:46:05 +0000
commit4bf26ee900eb0c8fe7cb81abe293bbe2dc336862 (patch)
tree25cfdba1d6010e4680c4d84b0e982e95a215fc60
parentaa97061a713e47c06b0292dfe2311892a1a7c566 (diff)
downloaddrakx-backup-do-not-use-4bf26ee900eb0c8fe7cb81abe293bbe2dc336862.tar
drakx-backup-do-not-use-4bf26ee900eb0c8fe7cb81abe293bbe2dc336862.tar.gz
drakx-backup-do-not-use-4bf26ee900eb0c8fe7cb81abe293bbe2dc336862.tar.bz2
drakx-backup-do-not-use-4bf26ee900eb0c8fe7cb81abe293bbe2dc336862.tar.xz
drakx-backup-do-not-use-4bf26ee900eb0c8fe7cb81abe293bbe2dc336862.zip
(summary_prompt) add spacing around separators
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/steps_gtk.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index f2fb9133e..423320a1b 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- summary screen:
+ o add spacing around separators
- drop support for iiimf
- update bootloader & updates banner icons
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index b5716a069..e55163496 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -593,7 +593,7 @@ sub summary_prompt {
if ($group ne $e->{group}) {
push @widget_list, [ @table ] if @table;
@table = ();
- push @widget_list, gtknew('HSeparator') if $count;
+ push @widget_list, gtknew('HSeparator', height => 8) if $count;
$count++;
$group = $e->{group};
push @table, [ gtknew('HBox', children_tight => [ gtknew('Title1', label => escape_text_for_TextView_markup_format($group)) ]), '' ];