summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-09-14 19:02:06 +0000
committerThierry Vignaud <tv@mageia.org>2012-09-14 19:02:06 +0000
commit6e4d82673c5d8d98acd69331e3b6136753f295a4 (patch)
treeaa820eb9ce5ecbeb0c8c7d51d6a65a4a9594d4e2 /perl-install
parent74aad0282984c53f315ca3e9df6b0e9ed48c2f27 (diff)
downloaddrakx-backup-do-not-use-6e4d82673c5d8d98acd69331e3b6136753f295a4.tar
drakx-backup-do-not-use-6e4d82673c5d8d98acd69331e3b6136753f295a4.tar.gz
drakx-backup-do-not-use-6e4d82673c5d8d98acd69331e3b6136753f295a4.tar.bz2
drakx-backup-do-not-use-6e4d82673c5d8d98acd69331e3b6136753f295a4.tar.xz
drakx-backup-do-not-use-6e4d82673c5d8d98acd69331e3b6136753f295a4.zip
(reallyChooseGroups) remove "select all" button
rationale: it's not as usefull as "unselect all" & it takes too much place when translated
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install/NEWS3
-rw-r--r--perl-install/install/steps_gtk.pm1
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 778ba44ca..d1bd9e30a 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,6 +1,9 @@
- adapt to xserver 1.13
- advertize new doc license & licenser (mga#7347)
- install cpupower instead of cpupower
+- package group selection:
+ o remove "select all" button (not as usefull as "unselect all" & it
+ takes too much place when translated)
Version 14.43 - 4 September 2012
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index bdb57cac6..c4a612b58 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -348,7 +348,6 @@ sub reallyChooseGroups {
0, gtknew('HButtonBox', layout => 'edge', children_tight => [
gtknew('Install_Button', text => N("Help"), clicked => sub {
interactive::gtk::display_help($o, { interactive_help_id => 'choosePackages#choosePackagesGroups' }, $w) }),
- gtknew('Button', text => N("Select All"), clicked => sub { $_->set_active(1) foreach @entries }),
gtknew('Button', text => N("Unselect All"), clicked => sub { $_->set_active(0) foreach @entries }),
gtknew('Button', text => N("Next"), clicked => sub { Gtk2->main_quit }),
]),