Skip to content

Commit

Permalink
Settings/Windows 11: remove a comma in the middle of the optional upd…
Browse files Browse the repository at this point in the history
…ate label.
  • Loading branch information
josephsl committed Jun 30, 2022
1 parent cb60f9c commit ddf7c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/appModules/systemsettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def event_NVDAObject_init(self, obj):
# Announce optional updates in Windows 11.
# Same as Windows 10 except it uses a different Automation Id.
if obj.UIAAutomationId == "SystemSettings_MusUpdate_SeekerUpdateUX_Button":
obj.name = ", ".join([obj.previous.previous.name, obj.name])
obj.name = " ".join([obj.previous.previous.name, obj.name])
# Windows 11's breadcrumb bar item uses a custom localized control type text.
# Although it is recognized as a heading, override role text to communicate what it actually is.
# This allows item label to be kept intact.
Expand Down

0 comments on commit ddf7c37

Please sign in to comment.