diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-09-06 02:41:23 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-09-06 02:41:23 +0000 |
commit | 25a4c8786ccdf174494a4636a17c16f2abdb7103 (patch) | |
tree | 48ac56234d95c67b4ece1403c25b04d3b5d56fb5 /perl-install | |
parent | bedcdcde6e327e8405040f4a1906df11a75a83dd (diff) | |
download | drakx-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')
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
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 || ''); |