summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/steps_gtk.pm4
2 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 23c64b957..c3965f1fe 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,6 +1,7 @@
- stop claim selecting LSB group will install 2.4.x kernel (#39220)
- desktop step
o move progress bar on its own line
+ o pack together time label & value
Version 11.41 - 11 September 2008
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index c3f1f87a4..4a3501e74 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -555,10 +555,10 @@ sub installPackages {
gtknew('ScrolledWindow', child => $pkg_log_widget,
hide_ref => \$show_advertising, height => 250, to_bottom => 1),
gtknew('ProgressBar', fraction_ref => \ (my $pkg_progress), hide_ref => \$show_advertising),
- gtknew('Table', children => [ [
+ gtknew('HButtonBox', layout => 'start', children_loose => [
N("Time remaining "),
gtknew('Label', text_ref => \ (my $msg_time_remaining = N("(estimating...)"))),
- ] ]),
+ ]),
gtknew('VBox', children_centered => [ gtknew('ProgressBar', fraction_ref => \ (my $progress_total), height => 25) ]),
gtknew('HButtonBox', spacing => 5, layout => 'end', children_loose => [ $cancel, $details ]),
])), 0, 1, 0);