* patch by Werner Pamler: Typo in TFPCustomCanvas.Draw, resolves #40176

This commit is contained in:
florian 2023-03-03 21:45:35 +01:00
parent 708aaa7b97
commit 1fad287896

View File

@ -786,7 +786,7 @@ begin
if xm >= width then
xm := width - 1;
ym := y + image.height-1;
if (ym<0) or (y>width) then exit;
if (ym<0) or (y>height) then exit;
if ym >= height then
ym := height - 1;
xi := x;