summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/mygtk2.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index a175f050e..1d85cc788 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- prevent mdkapplet from crashing (#46477)
+
Version 11.71.5 - 9 January 2009
- diskdrake:
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);