summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/fpg_base.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/fpg_base.pas b/src/corelib/fpg_base.pas
index 15edc88a..199004ba 100644
--- a/src/corelib/fpg_base.pas
+++ b/src/corelib/fpg_base.pas
@@ -905,8 +905,8 @@ function PtInRect(const ARect: TfpgRect; const APoint: TPoint): Boolean;
begin
Result := (APoint.x >= ARect.Left) and
(APoint.y >= ARect.Top) and
- (APoint.x < ARect.Right) and
- (APoint.y < ARect.Bottom);
+ (APoint.x <= ARect.Right) and
+ (APoint.y <= ARect.Bottom);
end;
procedure SortRect(var ARect: TRect);