summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docview/components/richtext/RichTextView.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/docview/components/richtext/RichTextView.pas b/docview/components/richtext/RichTextView.pas
index e50f2b62..8eee11b0 100644
--- a/docview/components/richtext/RichTextView.pas
+++ b/docview/components/richtext/RichTextView.pas
@@ -1078,8 +1078,8 @@ begin
exit;
end;
- Result := FLayout.FindPoint( XToFind + FXScroll,
- YToFind + FYScroll,
+ Result := FLayout.FindPoint( XToFind + FXScroll, // horizontal scrolls into positive
+ YToFind + (-FYScroll), // vertical scrolls into negative
LineIndex,
Offset,
Link );