mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:28:01 +02:00
--- 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:
parent
135467a029
commit
4facfeabc9
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user