summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_gtk.pm
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/install/steps_gtk.pm
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/install/steps_gtk.pm')
-rw-r--r--perl-install/install/steps_gtk.pm1
1 files changed, 0 insertions, 1 deletions
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 }),
]),