summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-12-06 14:35:22 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-12-06 14:36:59 +0100
commitaf70f77e2a0860fbcbf01f4b6ac28bfa6fea9c6b (patch)
tree937e4e715894e9a0d1b8d537f9a7beac3fe1ab12
parent26d6fd17010abe9ffff058d8578d335a82d2f7cb (diff)
downloaddrakx-af70f77e2a0860fbcbf01f4b6ac28bfa6fea9c6b.tar
drakx-af70f77e2a0860fbcbf01f4b6ac28bfa6fea9c6b.tar.gz
drakx-af70f77e2a0860fbcbf01f4b6ac28bfa6fea9c6b.tar.bz2
drakx-af70f77e2a0860fbcbf01f4b6ac28bfa6fea9c6b.tar.xz
drakx-af70f77e2a0860fbcbf01f4b6ac28bfa6fea9c6b.zip
(reallyChooseGroups) make bottom buttons always available
by puting the scrolling window only around the package group check boxes
-rw-r--r--perl-install/install/NEWS4
-rw-r--r--perl-install/install/steps_gtk.pm8
2 files changed, 7 insertions, 5 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index dc73d857a..016ee9bfe 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,7 @@
+- package group selection:
+ o make bottom buttons always available
+ (by puting the scrolling window only around the package group check boxes)
+
Version 16.9 - 6 December 2013
- fix retrieving network info from stage2 after dracut migration (mga#11504)
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index 3fc72b597..d5e0014d8 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -342,10 +342,8 @@ sub reallyChooseGroups {
#- when restarting this step, it might be necessary to reload the compssUsers.pl (bug 11558). kludgy.
if (!ref $o->{gtk_display_compssUsers}) { install::any::load_rate_files($o) }
ugtk3::gtkadd($w->{window},
- gtknew('ScrolledWindow', child =>
- gtknew('VBox', children => [
- 1, $o->{gtk_display_compssUsers}->($entry),
- 1, '',
+ gtknew('VBox', children => [
+ 1, gtknew('ScrolledWindow', child => $o->{gtk_display_compssUsers}->($entry)),
if_($individual,
0, gtknew('CheckButton', text => N("Individual package selection"), active_ref => $individual),
),
@@ -357,7 +355,7 @@ sub reallyChooseGroups {
gtknew('Button', text => N("Unselect All"), clicked => sub { $_->set_active(0) foreach @entries }),
gtknew('Button', text => N("Next"), clicked => sub { Gtk3->main_quit }),
]),
- ]),
+ ],
)
);
$w->main;