From 88eb718e82b5c0ad14c2b0c93ea4bfb125f85e95 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 14 Sep 2012 19:02:06 +0000 Subject: (reallyChooseGroups) remove "select all" button rationale: it's not as usefull as "unselect all" & it takes too much place when translated --- perl-install/install/NEWS | 3 +++ perl-install/install/steps_gtk.pm | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) 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 }), ]), -- cgit v1.2.1