summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-09-06 02:41:23 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-09-06 02:41:23 +0000
commit25a4c8786ccdf174494a4636a17c16f2abdb7103 (patch)
tree48ac56234d95c67b4ece1403c25b04d3b5d56fb5 /perl-install/ugtk2.pm
parentbedcdcde6e327e8405040f4a1906df11a75a83dd (diff)
downloaddrakx-backup-do-not-use-25a4c8786ccdf174494a4636a17c16f2abdb7103.tar
drakx-backup-do-not-use-25a4c8786ccdf174494a4636a17c16f2abdb7103.tar.gz
drakx-backup-do-not-use-25a4c8786ccdf174494a4636a17c16f2abdb7103.tar.bz2
drakx-backup-do-not-use-25a4c8786ccdf174494a4636a17c16f2abdb7103.tar.xz
drakx-backup-do-not-use-25a4c8786ccdf174494a4636a17c16f2abdb7103.zip
(_create_window) do not set border for wizards
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index c5310a270..7edd1aab8 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -1053,7 +1053,7 @@ END { &exit() }
sub _create_window {
my ($title) = @_;
my $w = Gtk2::Window->new('toplevel');
- $w->set_border_width(5) if !$::isInstall;
+ $w->set_border_width(5) if !$::isInstall && !$::isWizard;
$w->set_name("Title");
$w->set_title($title || '');