diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 473d2ea73..7617d3fe5 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -6,6 +6,7 @@ - fix dithering regression (introduced on 2008-09-29) - install apmd if /proc/apm exists (rpmsrate does not list apmd anymore, and apm is a kernel builtin) +- use HTML help for RPM group selection Version 11.58 - 29 September 2008 diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index d3e3324a6..4ea36123f 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -330,7 +330,8 @@ sub reallyChooseGroups { 0, $w_size, 0, Gtk2::HSeparator->new, 0, gtknew('HButtonBox', layout => 'edge', children_tight => [ - gtknew('Install_Button', text => N("Help"), clicked => $o->interactive_help_sub_display_id('choosePackages')), + gtknew('Install_Button', text => N("Help"), clicked => sub { + interactive::gtk::display_help($o, { interactive_help_id => 'choosePackages#choosePackages' }, $w) }), gtknew('Button', text => N("Next"), clicked => sub { Gtk2->main_quit }), ]), ]), |