diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-12 14:33:02 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-12 14:33:02 +0000 |
commit | 180e395f242b68a0507dc3bae612939f09326f26 (patch) | |
tree | 35ed323510dcc281a69b70f71b7fd7d843c302c9 /perl-install/install/steps_gtk.pm | |
parent | 6909e2e8c5e44d53d6f1cd85bc4f2d984734c008 (diff) | |
download | drakx-180e395f242b68a0507dc3bae612939f09326f26.tar drakx-180e395f242b68a0507dc3bae612939f09326f26.tar.gz drakx-180e395f242b68a0507dc3bae612939f09326f26.tar.bz2 drakx-180e395f242b68a0507dc3bae612939f09326f26.tar.xz drakx-180e395f242b68a0507dc3bae612939f09326f26.zip |
(installPackages) move progress bar on its own line
Diffstat (limited to 'perl-install/install/steps_gtk.pm')
-rw-r--r-- | perl-install/install/steps_gtk.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 63913aecf..c3f1f87a4 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -559,10 +559,8 @@ sub installPackages { N("Time remaining "), gtknew('Label', text_ref => \ (my $msg_time_remaining = N("(estimating...)"))), ] ]), - gtknew('HBox', children => [ - 1, gtknew('VBox', children_centered => [ gtknew('ProgressBar', fraction_ref => \ (my $progress_total), height => 25) ]), - 0, gtknew('HButtonBox', spacing => 5, children_loose => [ $cancel, $details ]), - ]), + 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); #- for the hide_ref & show_ref to work, we must set $show_advertising after packing |