Skip to content

Commit

Permalink
minor bugfix - exception on secure screen
Browse files Browse the repository at this point in the history
  • Loading branch information
mltony committed May 25, 2024
1 parent a799c43 commit 766d321
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions addon/globalPlugins/indent_nav/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,10 @@ def restoreHooks(self):


def chooseNVDAObjectOverlayClasses (self, obj, clsList):
try:
obj.windowClassName
except AttributeError:
return
if obj.windowClassName == u'Scintilla':
clsList.append(EditableIndentNav)
return
Expand Down

0 comments on commit 766d321

Please sign in to comment.