Skip to content

Commit 2e7c438

Browse files
committed
Added another window class name to the selection of overlay classes that chooses SafGrid.
1 parent b95cb1b commit 2e7c438

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

addon/appModules/vismaAdmin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def event_NVDAObject_init(self, obj):
128128

129129
def chooseNVDAObjectOverlayClasses(self, obj, clsList):
130130
try:
131-
if obj.windowClassName == "SafGrid" or obj.windowClassName == "AfxWnd140s":
131+
if obj.windowClassName == "SafGrid" or obj.windowClassName == "AfxWnd140s" or obj.windowClassName == "AfxWnd140su":
132132
clsList.insert(0, VismaSafGrid)
133133
elif isinstance(obj, IAccessible) and obj.IAccessibleRole == oleacc.ROLE_SYSTEM_DIALOG:
134134
clsList.insert(0, VismaSystemDialog)

buildVars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _(arg):
2525
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
2626
"addon_description": _("""Fixes accessibility issues in Visma Administration/Fakturering/forening."""),
2727
# version
28-
"addon_version": "2025.1.2",
28+
"addon_version": "2025.1.3",
2929
# Brief changelog for this version
3030
# Translators: what's new content for the add-on version to be shown in the add-on store
3131
"addon_changelog": _("""chatty."""),

0 commit comments

Comments
 (0)