Skip to content
Merged
Show file tree
Hide file tree
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: 4 additions & 2 deletions source/appModules/winword.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@
import appModuleHandler
from scriptHandler import script
import ui
from NVDAObjects.IAccessible.winword import WordDocument
from NVDAObjects.IAccessible.winword import WordDocument as IAccessibleWordDocument
from NVDAObjects.UIA.wordDocument import WordDocument as UIAWordDocument
from NVDAObjects.window.winword import WordDocument


class AppModule(appModuleHandler.AppModule):

def chooseNVDAObjectOverlayClasses(self, obj, clsList):
if WordDocument in clsList:
if UIAWordDocument in clsList or IAccessibleWordDocument in clsList:
clsList.insert(0, WinwordWordDocument)


Expand Down
1 change: 1 addition & 0 deletions user_docs/en/changes.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ If you need this functionality please assign a gesture to the appropriate script
- When using a Chinese input method such as Taiwan - Microsoft Quick in Microsoft Word, scrolling the braille display forward and backward no longer incorrectly keeps jumping back to the original caret position. (#12855)
- When accessing Microsoft Word documents via UIA, navigating by sentence (alt+downArrow / alt+upArrow) is again possible. (#9254)
- When accessing MS Word with UIA, paragraph indenting is now reported. (#12899(
- When accessing MS Word with UIA, change tracking command and some other localized commands are now reported in Word . (#12904)
-


Expand Down