From 9bd64c23f423416881941c377429834246501aff Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 5 Oct 2007 19:35:50 +0000 Subject: (display_release_notes) fix release notes window size in !install mode --- perl-install/NEWS | 2 ++ perl-install/any.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index 4e1c0f5db..88897c513 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- finish-install: fix release notes window size + Version 10.4.237 - 5 October 2007, by Olivier "blino" Blin - fix installed modules detection (#34478) diff --git a/perl-install/any.pm b/perl-install/any.pm index 2ccb05252..94be8c45f 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -871,7 +871,7 @@ sub display_release_notes { ), ); # make parent visible still visible: - local ($::real_windowwidth, $::real_windowheight) = ($::real_windowwidth - 50, $::real_windowheight - 50); + local ($::real_windowwidth, $::real_windowheight) = ($::real_windowwidth - 50, $::real_windowheight - 50) if $::isInstall; mygtk2::set_main_window_size($w->{rwindow}); $w->{real_window}->grab_focus; $w->{real_window}->show_all; -- cgit v1.2.1