diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 86eed4587..60a3161f7 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -4,6 +4,7 @@ o ext4dev is now stable and called ext4 in 2.6.28+ - harddrake: o fix displaying in proper category sound coprocessor & misc ACPI event keys +- prevent mdkapplet from crashing (#46477) Version 11.76 - 18 December 2008 diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 2f70efe89..5a9e863a3 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -1206,7 +1206,7 @@ sub _create_Window { _force_keyboard_focus($w); } - if ($::isInstall) { + if ($::isInstall && !$::isStandalone) { require install::gtk; #- for perl_checker install::gtk::handle_unsafe_mouse($::o, $w); $w->signal_connect(key_press_event => \&install::gtk::special_shortcuts); |