From 54de398a1cfcc42d55d879937a5c99932149618b Mon Sep 17 00:00:00 2001 From: rosenfield Date: Mon, 5 May 2008 17:23:50 +0000 Subject: [PATCH] Bugfix: Avoid scroll by removing blank line outside visible area in Authors text box. --- source/about.pas | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/about.pas b/source/about.pas index 44c4f1a3..28498851 100644 --- a/source/about.pas +++ b/source/about.pas @@ -97,6 +97,9 @@ begin // Define the current cursor like a clock Screen.Cursor := crHourGlass; + // Avoid scroll by removing blank line outside visible area in Authors text box + MemoAuthors.Text := TrimRight(MemoAuthors.Text); + // App-Version LabelVersion.Caption := FullAppVersion;