summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-11 16:37:11 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-11 16:37:11 +0000
commitbac1c7b2690e0ce3af94c3475fddb71dfd6d2d6e (patch)
tree2762ca5047913e9fcea7525a3e37daa2a4cedcfb /perl-install/interactive
parent96bd2aef26feb5bfd0fefa2d7d6b815c7906a1d1 (diff)
downloaddrakx-bac1c7b2690e0ce3af94c3475fddb71dfd6d2d6e.tar
drakx-bac1c7b2690e0ce3af94c3475fddb71dfd6d2d6e.tar.gz
drakx-bac1c7b2690e0ce3af94c3475fddb71dfd6d2d6e.tar.bz2
drakx-bac1c7b2690e0ce3af94c3475fddb71dfd6d2d6e.tar.xz
drakx-bac1c7b2690e0ce3af94c3475fddb71dfd6d2d6e.zip
(ask_fromW) fix displaying "Help" Button for HTML help
Diffstat (limited to 'perl-install/interactive')
-rw-r--r--perl-install/interactive/gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index a5b410219..f33295b72 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -829,7 +829,7 @@ sub ask_fromW {
mygtk2::set_main_window_size($mainw->{rwindow}) if $mainw->{pop_it} && !$common->{auto_window_size} && (@$l || $mainw->{box_size} == 200);
my @more_buttons = (
- if_($common->{interactive_help},
+ if_($common->{interactive_help} || $common->{interactive_help_id},
[ gtknew('Install_Button', text => N("Help"),
clicked => sub { display_help($o, $common, $mainw) }), undef, 1 ]),
if_($common->{more_buttons}, @{$common->{more_buttons}}),