diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-18 11:34:18 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-18 11:34:18 +0000 |
commit | d5b10a973bd4ec474edf3bfa29df4458d2519e85 (patch) | |
tree | d88cd9b2e7eba5006d52988611e1bc64a1a2ed48 /perl-install/ugtk2.pm | |
parent | 48ec956d005ba74c32119ba061285510fd29277d (diff) | |
download | drakx-d5b10a973bd4ec474edf3bfa29df4458d2519e85.tar drakx-d5b10a973bd4ec474edf3bfa29df4458d2519e85.tar.gz drakx-d5b10a973bd4ec474edf3bfa29df4458d2519e85.tar.bz2 drakx-d5b10a973bd4ec474edf3bfa29df4458d2519e85.tar.xz drakx-d5b10a973bd4ec474edf3bfa29df4458d2519e85.zip |
(new,may_destroy) track windows in order to be able to set the proper
transient hint (really fixing focus bug (#42750) which got unfixed
after fixing vivication)
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index ef5c5801d..33d7abc54 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -728,6 +728,7 @@ sub new { my $icon = find { _find_imgfile($_) } $::isInstall ? 'empty-banner' : $opts{icon}; my $banner_title = $opts{banner_title}; $title = uc($title) if $::isInstall; + $o->{transient} ||= $::main_window if $::main_window; my $window = gtknew( 'MagicWindow', title => $title || '', @@ -740,6 +741,7 @@ sub new { if_(!$::isInstall, icon_no_error => wm_icon()), if_($o->{transient}, transient_for => $o->{transient}), ); + push @::main_windows, $::main_window = $window->{real_window}; $window->set_border_width(10) if !$window->{pop_it} && !$::noborderWhenEmbedded; $o->{rwindow} = $o->{window} = $window; |