summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/gtk.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 6f3035587..6519c5ff4 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -2,6 +2,7 @@
- fix berber language image's transparency
- fix displaying current security level in GUI
(regression introduced on 2008-08-29)
+- increase default window height b/c of package selection step
- update icons for packages/services selection
Version 11.42 - 12 September 2008
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index 68370c51f..4857eadfc 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -239,7 +239,7 @@ sub init_sizes {
$::stepswidth = $::rootwidth <= 640 ? 0 : 196;
($::logowidth, $::logoheight) = $::rootwidth <= 640 ? (0, 0) : (800, 75);
($o->{windowwidth}, $o->{windowheight}) = ($::rootwidth - $::stepswidth, $::rootheight);
- ($::real_windowwidth, $::real_windowheight) = (576, 445);
+ ($::real_windowwidth, $::real_windowheight) = (576, 465);
}
sub handle_unsafe_mouse {