diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 22ccf576e..bee943a30 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - further improve layout of media selection step +- "media selection" step: fix position of button (#29367) - refresh "Summary" step Version 11.32 - 2 September 2008 diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index f2737b767..04c0d5f50 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -720,7 +720,7 @@ It will then continue from the hard drive and the packages will remain available 0, gtknew('CheckButton', text => N("Copy whole CDs"), active_ref => $o_copy_rpms_on_disk), 0, gtknew('HSeparator'), ), - 0, gtknew('HBox', children_tight => [ + 0, gtknew('HButtonBox', layout => 'end', children_tight => [ gtknew('Button', text => N("Next"), clicked => sub { Gtk2->main_quit }), ]), )), |