Skip to content

Commit

Permalink
Merge pull request #8 from TheQuinbox/master
Browse files Browse the repository at this point in the history
Made the ad-on support ROLE_DOCUMENT, so it works with the new Notepad and other such things.
  • Loading branch information
mltony authored Sep 2, 2022
2 parents c4efe69 + b110793 commit 65461c1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions addon/globalPlugins/indent_nav.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ def chooseNVDAObjectOverlayClasses (self, obj, clsList):
if obj.windowClassName == u"AkelEditW":
clsList.append(EditableIndentNav)
return
if obj.windowClassName == u"RichEditD2DPT":
clsList.append(EditableIndentNav)
return
if obj.role == ROLE_EDITABLETEXT:
clsList.append(EditableIndentNav)
return
Expand Down

0 comments on commit 65461c1

Please sign in to comment.