diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-12 15:31:12 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-12 15:31:12 +0000 |
commit | ba1d6073803947e76c898500b4231759733b68ae (patch) | |
tree | 9c93777d58d07b511e6e457e279e18fa0d7bb6f1 | |
parent | d83bf009790f5c977ae00673b8749333bb60e796 (diff) | |
download | drakx-ba1d6073803947e76c898500b4231759733b68ae.tar drakx-ba1d6073803947e76c898500b4231759733b68ae.tar.gz drakx-ba1d6073803947e76c898500b4231759733b68ae.tar.bz2 drakx-ba1d6073803947e76c898500b4231759733b68ae.tar.xz drakx-ba1d6073803947e76c898500b4231759733b68ae.zip |
(installPackages) add a separator between buttons & progress bar
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index c3965f1fe..0b0a6d37a 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 add a separator between buttons & progress bar 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 47029173e..077a9ae98 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -560,6 +560,7 @@ sub installPackages { gtknew('Label', text_ref => \ (my $msg_time_remaining = N("(estimating...)"))), ]), gtknew('VBox', children_centered => [ gtknew('ProgressBar', fraction_ref => \ (my $progress_total), height => 25) ]), + gtknew('HSeparator'), gtknew('HButtonBox', spacing => 5, layout => 'end', children_loose => [ $cancel, $details ]), ])), 0, 1, 0); |