From 472fd05c0a0c7722a67a91bd29a97934332b843c Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 18 Aug 2008 11:04:09 +0000 Subject: (_gtk__MagicWindow,wait_messageW) move using $::main_window as transient hint from interactive::gtk::wait_messageW() into _gtk__MagicWindow(), thus fixing focus bug #42750 --- perl-install/mygtk2.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'perl-install/mygtk2.pm') diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index c5987b3a0..e60206f0d 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -615,6 +615,7 @@ sub _gtk_any_Window { } $w->set_modal(delete $opts->{modal}) if exists $opts->{modal}; + $opts->{transient_for} ||= $::main_window; $w->set_modal(1) if exists $opts->{transient_for}; $w->set_transient_for(delete $opts->{transient_for}) if exists $opts->{transient_for}; $w->set_border_width(delete $opts->{border_width}) if exists $opts->{border_width}; -- cgit v1.2.1