diff --git a/src/orca/flat_review.py b/src/orca/flat_review.py index b795aaaabf..4ca322038e 100644 --- a/src/orca/flat_review.py +++ b/src/orca/flat_review.py @@ -921,7 +921,7 @@ def setCurrent(self, lineIndex, zoneIndex, wordIndex, charIndex): def _getClickPoint(self): string, x, y, width, height = self.getCurrent(Context.CHAR) - if x < 0 and y < 0: + if (x < 0 and y < 0) or (width <= 0 and height <=0): return -1, -1 # Click left of center to position the caret there.