mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
* fix for mantis 38889, swap bottom and rect in pointinside
git-svn-id: trunk@49373 -
This commit is contained in:
parent
e57059eea3
commit
a714cfafb8
@ -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