summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/mygtk2.pm4
2 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index b15a39d78..761cba3aa 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -2,6 +2,7 @@
aka since November 24 2008)
- localedrake
o add "English (South Africa)" (#51057)
+- fix window creation (#52812)
Version 12.43 - 10 August 2009
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm
index b62f29eec..dc315f50c 100644
--- a/perl-install/mygtk2.pm
+++ b/perl-install/mygtk2.pm
@@ -1217,8 +1217,6 @@ sub _create_Window {
}
});
- $w->present();
-
if ($::isInstall && !$::isStandalone) {
require install::gtk; #- for perl_checker
install::gtk::handle_unsafe_mouse($::o, $w);
@@ -1242,6 +1240,8 @@ sub _create_Window {
}) if $special_center;
}
+ $w->present() if $no_Window_Manager;
+
$w;
}