summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-01-12 13:24:16 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-01-12 13:24:16 +0000
commit6cf928fcc1227753f6f4e7da0ae50968efb037b8 (patch)
tree7cfddcb53dd07a804c123957baf2af389bd2ef8c /perl-install/ugtk2.pm
parent1f83a97620e5ab86f703e071ac3e3b874a64e6df (diff)
downloaddrakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.tar
drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.tar.gz
drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.tar.bz2
drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.tar.xz
drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.zip
return the child when MagicWindow is using the $::WizardWindow
(otherwise the user of the MagicWindow can destroy the WizardWindow)
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index d0e42d711..8cd3d27dd 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -840,13 +840,13 @@ sub new {
if_($o->{transient} && $o->{transient} =~ /Gtk2::Window/, transient_for => $o->{transient}),
);
- if ($window == $::WizardWindow) {
+ if ($window->isa('Gtk2::Window')) {
+ $o->{rwindow} = $window;
+ $o->{pop_it} = 1;
+ } else {
$o->{rwindow} = $o->{window};
set_main_window_size($o->{window});
$o->{window}->set_border_width(10);
- } else {
- $o->{rwindow} = $window;
- $o->{pop_it} = 1;
}
$o;
}