From 0a891d6558b2344967adac375bda38c33f250724 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 6 Jun 2007 15:38:16 +0000 Subject: (set_main_window_size) enable to override default size with Gtk+ frontend --- perl-install/NEWS | 3 +++ perl-install/mygtk2.pm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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); } -- cgit v1.2.1