summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-12 14:34:44 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-12 14:34:44 +0000
commit315fc8d4115762d246299c38ff506e119429e79d (patch)
tree84644dd6feb24d9bec7b76c55c8222b0e788c3d2 /perl-install/install
parent180e395f242b68a0507dc3bae612939f09326f26 (diff)
downloaddrakx-backup-do-not-use-315fc8d4115762d246299c38ff506e119429e79d.tar
drakx-backup-do-not-use-315fc8d4115762d246299c38ff506e119429e79d.tar.gz
drakx-backup-do-not-use-315fc8d4115762d246299c38ff506e119429e79d.tar.bz2
drakx-backup-do-not-use-315fc8d4115762d246299c38ff506e119429e79d.tar.xz
drakx-backup-do-not-use-315fc8d4115762d246299c38ff506e119429e79d.zip
(installPackages) pack together time label & value
Diffstat (limited to 'perl-install/install')
-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);