Skip to content

Commit

Permalink
Merge 4864469 into ac5ab40
Browse files Browse the repository at this point in the history
  • Loading branch information
codeofdusk authored Aug 13, 2019
2 parents ac5ab40 + 4864469 commit d7784c3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion source/NVDAObjects/UIA/winConsoleUIA.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,14 @@ class WinConsoleUIA(KeyboardHandlerBasedTypedCharSupport):
#: Only process text changes every 30 ms, in case the console is getting
#: a lot of text.
STABILIZE_DELAY = 0.03
_TextInfo = consoleUIATextInfo
#: Use our custom textInfo for UIA consoles.
#: This fixes expand/collapse, implements word movement,
# and bounds review to the visible text.
# Overriding _get_TextInfo and thus the TextInfo property on NVDAObjects.UIA.UIA
# consoleUIATextInfo fixes expand/collapse, implements word movement, and
# bounds review to the visible text.
def _get_TextInfo(self):
return consoleUIATextInfo
#: the caret in consoles can take a while to move on Windows 10 1903 and later.
_caretMovementTimeoutMultiplier = 1.5

Expand Down

0 comments on commit d7784c3

Please sign in to comment.