Skip to content

Commit

Permalink
Merge branch 'main' of github.com:NSoiffer/MathCATForPython
Browse files Browse the repository at this point in the history
  • Loading branch information
NSoiffer committed May 11, 2023
2 parents 3d1cfef + b757853 commit 25c8fdf
Show file tree
Hide file tree
Showing 3 changed files with 274 additions and 136 deletions.
4 changes: 2 additions & 2 deletions NVDA-addon/addon/globalPlugins/MathCAT/MathCATPreferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#Speech_SpeechStyle is derived from the yaml files under the selected language
Speech_Verbosity = ("Terse", "Medium", "Verbose")
Speech_SubjectArea = ("General")
Speech_Chemistry = ("SpellOut", "AsCompound", "Off")
Speech_Chemistry = ("SpellOut", "Off")
Navigation_NavMode = ("Enhanced", "Simple", "Character")
#Navigation_ResetNavMode is boolean
#Navigation_OverView is boolean
Expand Down Expand Up @@ -422,7 +422,7 @@ def validate_user_preferences():
# SubjectArea: General # FIX: still working on this
UserInterface.validate("Speech", "SubjectArea", None, "General")
# Chemistry: SpellOut # SpellOut (H 2 0), AsCompound (Water), Off (H sub 2 O)
UserInterface.validate("Speech", "Chemistry", ["SpellOut", "AsCompound", "Off"], "SpellOut")
UserInterface.validate("Speech", "Chemistry", ["SpellOut", "Off"], "SpellOut")
#Navigation:
# NavMode: Enhanced # Enhanced, Simple, Character
UserInterface.validate("Navigation", "NavMode", ["Enhanced", "Simple", "Character"], "Enhanced")
Expand Down
Loading

0 comments on commit 25c8fdf

Please sign in to comment.