We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ff510a commit 4864469Copy full SHA for 4864469
1 file changed
source/NVDAObjects/UIA/winConsoleUIA.py
@@ -238,7 +238,11 @@ class WinConsoleUIA(KeyboardHandlerBasedTypedCharSupport):
238
#: Use our custom textInfo for UIA consoles.
239
#: This fixes expand/collapse, implements word movement,
240
# and bounds review to the visible text.
241
- TextInfo = consoleUIATextInfo
+ # Overriding _get_TextInfo and thus the TextInfo property on NVDAObjects.UIA.UIA
242
+ # consoleUIATextInfo fixes expand/collapse, implements word movement, and
243
+ # bounds review to the visible text.
244
+ def _get_TextInfo(self):
245
+ return consoleUIATextInfo
246
#: the caret in consoles can take a while to move on Windows 10 1903 and later.
247
_caretMovementTimeoutMultiplier = 1.5
248
0 commit comments