summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-07-26 10:35:23 +0000
committerThierry Vignaud <tv@mageia.org>2012-07-26 10:35:23 +0000
commit076ef23b167ce71e524a6c5ea9198672b83d253c (patch)
tree7207bc56a8b7f89f4ced8e592dd2134ace8aa32e /perl-install/install
parent926e9dcecfb44a9adb83ed88de285c89aea6c9b6 (diff)
downloaddrakx-backup-do-not-use-076ef23b167ce71e524a6c5ea9198672b83d253c.tar
drakx-backup-do-not-use-076ef23b167ce71e524a6c5ea9198672b83d253c.tar.gz
drakx-backup-do-not-use-076ef23b167ce71e524a6c5ea9198672b83d253c.tar.bz2
drakx-backup-do-not-use-076ef23b167ce71e524a6c5ea9198672b83d253c.tar.xz
drakx-backup-do-not-use-076ef23b167ce71e524a6c5ea9198672b83d253c.zip
(reallyChooseGroups) add a scrollbar
(due to Oxygen theme eating more space than Ia Ora one)
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS4
-rw-r--r--perl-install/install/steps_gtk.pm2
2 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index e0440f620..237b68e74 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,7 @@
+- package group selection:
+ o add a scrollbar
+ (due to Oxygen theme eating more space than Ia Ora one)
+
Version 14.31 - 24 July 2012
- adapt to latest GDB
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index 33ddae6fe..2ed26ac34 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -333,6 +333,7 @@ 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) }
ugtk2::gtkadd($w->{window},
+ gtknew('ScrolledWindow', child =>
gtknew('VBox', children => [
1, $o->{gtk_display_compssUsers}->($entry),
1, '',
@@ -347,6 +348,7 @@ sub reallyChooseGroups {
gtknew('Button', text => N("Next"), clicked => sub { Gtk2->main_quit }),
]),
]),
+ )
);
$w->main;
1;