* fix for mantis 38889, swap bottom and rect in pointinside

git-svn-id: trunk@49373 -
This commit is contained in:
marco 2021-05-15 20:45:48 +00:00
parent e57059eea3
commit a714cfafb8

View File

@ -57,7 +57,7 @@ begin
SortRect (bounds);
with Bounds do
result := (x >= left) and (x <= right) and
(y >= bottom) and (y <= top);
(y >= top) and (y <= bottom);
end;
Function CheckRectClipping (ClipRect:TRect; var Rect:Trect) : Boolean;