Skip to content

Commit

Permalink
Confspec: change UIA notification announcement setting to an option. Re
Browse files Browse the repository at this point in the history
nvaccess#10956.

In order to support announcing UIA notifications from the foreground (focused) app, change UIA notification announcement setting from a boolean to an option list. The available settings are 'always', 'focused app', and 'off'.
  • Loading branch information
josephsl committed Oct 10, 2020
1 parent d814cfc commit 0c4ba6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/config/configSpec.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
guessObjectPositionInformationWhenUnavailable = boolean(default=false)
reportTooltips = boolean(default=false)
reportHelpBalloons = boolean(default=true)
reportUIANotifications = boolean(default=true)
reportUIANotifications = option("always", "focusedApp", "off", default="always")
reportObjectDescriptions = boolean(default=True)
reportDynamicContentChanges = boolean(default=True)
reportAutoSuggestionsWithSound = boolean(default=True)
Expand Down

0 comments on commit 0c4ba6e

Please sign in to comment.