summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}