jvcllaz: Fix form autosizing in JvYearGrid demo for Linux.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6996 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2019-06-02 10:36:18 +00:00
parent c2853e1f44
commit 793dbc12ab
4 changed files with 1885 additions and 2911 deletions

View File

@ -213,8 +213,11 @@ begin
end;
Inc(AWidth, AGraphic.Width);
end;
ACanvas.Draw(ARect.Left, ARect.Top, Bmp);
{
BitBlt(ACanvas.Handle, ARect.Left, ARect.Top, Bmp.Width, Bmp.Height,
Bmp.Canvas.Handle, 0, 0, SRCCOPY);
}
finally
Bmp.Free;
end;