summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/share/themes-galaxy.rc6
-rw-r--r--perl-install/install/steps_gtk.pm2
3 files changed, 8 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 9676d603d..b8c88793e 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -2,6 +2,7 @@
not supported), thus prevent waiting several minutes needlessly
- refresh "Individual package selection" step
- refresh "Security" step
+- refresh "Summary" step
Version 11.28 - 28 August 2008
diff --git a/perl-install/install/share/themes-galaxy.rc b/perl-install/install/share/themes-galaxy.rc
index 346b27f5b..e1005f225 100644
--- a/perl-install/install/share/themes-galaxy.rc
+++ b/perl-install/install/share/themes-galaxy.rc
@@ -25,6 +25,11 @@ style "background"
bg[NORMAL] = "#FFFFFF"
}
+style "white_background"
+{
+ bg[NORMAL] = "#FFFFFF"
+}
+
style "Left_background"
{
bg[NORMAL] = "#2859B5"
@@ -37,4 +42,5 @@ widget "*Step-categories*" style "step-categories"
widget "*Left_background*" style "Left_background"
widget "*logo*" style "white-on-blue"
widget "*background*" style "background"
+widget "*white_background*" style "white_background"
widget "*Banner*" style "banner"
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index 8616400ba..9ffc9efa4 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -668,7 +668,7 @@ sub summary_prompt {
ugtk2::gtkadd($w->{window},
gtknew('VBox', spacing => 5, children => [
- 1, gtknew('ScrolledWindow',
+ 1, gtknew('ScrolledWindow', widget_name => 'white_background',
child => gtknew('VBox', children_tight => [ map {
ref($_) eq 'ARRAY' ? gtknew('Table', mcc => 1, row_spacings => 2, children => $_) : $_;
} @widget_list ])),