diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-09-04 18:12:52 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-09-04 18:12:52 +0000 |
commit | da80d0370e178ad06c3d353afa0b104c26b93db8 (patch) | |
tree | 36f22402b1c450773accde6e2b6dd769c6e4916f /perl-install | |
parent | 95e6486753772438ba8d1ba7463f42a7ccecc7b2 (diff) | |
download | drakx-da80d0370e178ad06c3d353afa0b104c26b93db8.tar drakx-da80d0370e178ad06c3d353afa0b104c26b93db8.tar.gz drakx-da80d0370e178ad06c3d353afa0b104c26b93db8.tar.bz2 drakx-da80d0370e178ad06c3d353afa0b104c26b93db8.tar.xz drakx-da80d0370e178ad06c3d353afa0b104c26b93db8.zip |
(reallyChooseGroups) fix crash when clicking previous in minimal install step (mga#7345)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 5ddafadcd..0a8bb3637 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - compress report with xz instead of gzip +- fix crash when clicking previous in minimal install step (mga#7345) - include swaplabel (mga#7334) Version 14.42 - 4 September 2012 diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index f283b8915..bdb57cac6 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -340,9 +340,9 @@ sub reallyChooseGroups { gtknew('VBox', children => [ 1, $o->{gtk_display_compssUsers}->($entry), 1, '', - 0, if_($individual, - gtknew('CheckButton', text => N("Individual package selection"), active_ref => $individual), - ), + if_($individual, + 0, gtknew('CheckButton', text => N("Individual package selection"), active_ref => $individual), + ), 0, $w_size, 0, Gtk2::HSeparator->new, 0, gtknew('HButtonBox', layout => 'edge', children_tight => [ |