summaryrefslogtreecommitdiffstats
path: root/perl-install/mygtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-06-06 15:38:16 +0000
committerThierry Vignaud <tv@mandriva.org>2007-06-06 15:38:16 +0000
commit0a891d6558b2344967adac375bda38c33f250724 (patch)
tree292d66863f015d5f9707d9bf2722d4fa7f8574dc /perl-install/mygtk2.pm
parentc4555c4c52ae1317307a9b171da0bb46f6bf33b0 (diff)
downloaddrakx-backup-do-not-use-0a891d6558b2344967adac375bda38c33f250724.tar
drakx-backup-do-not-use-0a891d6558b2344967adac375bda38c33f250724.tar.gz
drakx-backup-do-not-use-0a891d6558b2344967adac375bda38c33f250724.tar.bz2
drakx-backup-do-not-use-0a891d6558b2344967adac375bda38c33f250724.tar.xz
drakx-backup-do-not-use-0a891d6558b2344967adac375bda38c33f250724.zip
(set_main_window_size) enable to override default size with Gtk+ frontend
Diffstat (limited to 'perl-install/mygtk2.pm')
-rw-r--r--perl-install/mygtk2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm
index c8c1d544a..91e38c306 100644
--- a/perl-install/mygtk2.pm
+++ b/perl-install/mygtk2.pm
@@ -1060,7 +1060,7 @@ sub _allow_scroll_TextView_to_bottom {
sub set_main_window_size {
my ($window) = @_;
- my ($width, $height) = $::isInstall ? ($::real_windowwidth, $::real_windowheight) : $::isWizard ? (540, 360) : (600, 400);
+ my ($width, $height) = $::real_windowwidth ? ($::real_windowwidth, $::real_windowheight) : $::isWizard ? (540, 360) : (600, 400);
$window->set_size_request($width, $height);
}