--- Merging r49373 into '.':

U    packages/fcl-image/src/clipping.pp
--- Recording mergeinfo for merge of r49373 into '.':
 U   .

# revisions: 49373
r49373 | marco | 2021-05-15 22:45:48 +0200 (Sat, 15 May 2021) | 1 line
Changed paths:
   M /trunk/packages/fcl-image/src/clipping.pp

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

git-svn-id: branches/fixes_3_2@49611 -
This commit is contained in:
marco 2021-07-15 15:53:21 +00:00
parent 135467a029
commit 4facfeabc9

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;