From 44cf3cfe7d7c7f0c1da888db6011c7e72419a0f6 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 14 Jan 2005 22:38:59 +0000 Subject: MagicWindow is now really magic, {rwindow} and {window} can be the same thing :) --- perl-install/ugtk2.pm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 8cd3d27dd..4e9aaa765 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -840,11 +840,10 @@ sub new { if_($o->{transient} && $o->{transient} =~ /Gtk2::Window/, transient_for => $o->{transient}), ); - if ($window->isa('Gtk2::Window')) { - $o->{rwindow} = $window; - $o->{pop_it} = 1; - } else { - $o->{rwindow} = $o->{window}; + $o->{rwindow} = $o->{window} = $window; + $o->{pop_it} = $window->{pop_it}; + + if (!$o->{pop_it}) { set_main_window_size($o->{window}); $o->{window}->set_border_width(10); } -- cgit v1.2.1