summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-08-18 11:34:18 +0000
committerThierry Vignaud <tv@mandriva.org>2008-08-18 11:34:18 +0000
commitd5b10a973bd4ec474edf3bfa29df4458d2519e85 (patch)
treed88cd9b2e7eba5006d52988611e1bc64a1a2ed48 /perl-install/ugtk2.pm
parent48ec956d005ba74c32119ba061285510fd29277d (diff)
downloaddrakx-backup-do-not-use-d5b10a973bd4ec474edf3bfa29df4458d2519e85.tar
drakx-backup-do-not-use-d5b10a973bd4ec474edf3bfa29df4458d2519e85.tar.gz
drakx-backup-do-not-use-d5b10a973bd4ec474edf3bfa29df4458d2519e85.tar.bz2
drakx-backup-do-not-use-d5b10a973bd4ec474edf3bfa29df4458d2519e85.tar.xz
drakx-backup-do-not-use-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.pm2
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;