diff options
Diffstat (limited to 'perl-install/my_gtk.pm')
-rw-r--r-- | perl-install/my_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm index 90433cc00..ad8c4ea9e 100644 --- a/perl-install/my_gtk.pm +++ b/perl-install/my_gtk.pm @@ -925,9 +925,9 @@ sub _create_window($$) { 0xffc9 => 'next', 0xffc8 => 'previous' }}{$_[1]{keyval}}; - if ($d eq "help") { + if ($d eq 'help') { require install_gtk; - install_gtk::create_big_help($::o); + install_gtk::create_big_help($::o) if !$o->{disallow_big_help}; } elsif ($::isInstall && $d eq 'screenshot') { common::take_screenshot($o); } elsif (chr($_[1]{keyval}) eq 'e' && $_[1]{state} & 8) { |