Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions source/braille.py
Original file line number Diff line number Diff line change
Expand Up @@ -2468,6 +2468,12 @@ def handleCaretMove(
if shouldAutoTether:
self.setTether(TetherTo.FOCUS.value, auto=True)
if self._tether != TetherTo.FOCUS.value:
# Braille display content is updated in case where:
# braille is tethered to review, review cursor does not follow system caret,
# and focus object is navigator object.
if not config.conf["reviewCursor"]["followCaret"]:
if obj == api.getNavigatorObject():
self.handleUpdate(obj)
return
region = self.mainBuffer.regions[-1] if self.mainBuffer.regions else None
if region and region.obj==obj:
Expand Down