ide: don't show black bg just after the switch to contributors page in about dialog by Zeljan (bug #0015695)

git-svn-id: trunk@23660 -
This commit is contained in:
paul 2010-02-07 09:37:55 +00:00
parent cd964ca179
commit c1597f9714

View File

@ -290,6 +290,13 @@ begin
if FOffset = -1 then
FOffset := FBuffer.Height;
with FBuffer.Canvas do
begin
Brush.Color := clWhite;
Brush.Style := bsSolid;
FillRect(0, 0, Width, Height);
end;
end;
procedure TScrollingText.DrawScrollingText(Sender: TObject);