We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fb12ad commit fbf8becCopy full SHA for fbf8bec
addon/globalPlugins/MathCAT/MathCATPreferences.py
@@ -57,7 +57,9 @@ def __init__(self, parent):
57
58
# hack for "CopyAs" because its location in the prefs is not yet fixed
59
if "CopyAs" not in user_preferences["Navigation"]:
60
- user_preferences["Navigation"]["CopyAs"] = user_preferences["Other"]["CopyAs"] if "CopyAs" in user_preferences["Other"] else "MathML"
+ user_preferences["Navigation"]["CopyAs"] = (
61
+ user_preferences["Other"]["CopyAs"] if "CopyAs" in user_preferences["Other"] else "MathML"
62
+ )
63
UserInterface.validate_user_preferences()
64
65
if "NVDAAddOn" in user_preferences:
0 commit comments