Message box have to draw some blank lines.

This commit is contained in:
Margers 2024-09-11 01:09:06 +00:00 committed by Michael Van Canneyt
parent 8ff73efe32
commit 9c3a66930c

View File

@ -3261,6 +3261,15 @@ BEGIN
end;
end;
FinishLine;
if Y < Size.Y then
begin
{we have to draw blank lines}
for I:=Y to Size.Y-1 do
begin
BeginNewLine;
FinishLine;
end;
end;
END;
{$else FV_UNICODE}
PROCEDURE TStaticText.Draw;