From 4fc97d0acbe11d00e96a36d42c727dd9b3a12c72 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 3 Sep 2004 02:50:21 +0000 Subject: (_create_window) prevent inner widgets to stick the window --- perl-install/ugtk2.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'perl-install/ugtk2.pm') diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 60e51a8b2..f910f71da 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -1053,6 +1053,7 @@ END { &exit() } sub _create_window { my ($title) = @_; my $w = Gtk2::Window->new('toplevel'); + $w->set_border_width(5) if !$::isInstall; $w->set_name("Title"); $w->set_title($title || ''); -- cgit v1.2.1