summaryrefslogtreecommitdiffstats
path: root/perl-install
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
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')
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/mygtk2.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 17b22fa2e..c7eb1c46f 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- interactive layer:
+ o enable to override default size with Gtk+ frontend
+
Version 10.4.134 - 06 June 2007, by Thierry Vignaud
- drakfont:
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);
}