We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2db32a1 commit 23fdd06Copy full SHA for 23fdd06
addon/globalPlugins/MathCAT/MathCATPreferences.py
@@ -396,7 +396,9 @@ def set_ui_values(self):
396
"Error when setting SpeechStyle for " + self.m_choiceLanguage.GetStringSelection()
397
)
398
# set the rest of the UI elements
399
- self.m_choiceDecimalSeparator.SetSelection(Speech_DecimalSeparator.index(user_preferences["Other"]["DecimalSeparator"]))
+ self.m_choiceDecimalSeparator.SetSelection(
400
+ Speech_DecimalSeparator.index(user_preferences["Other"]["DecimalSeparator"])
401
+ )
402
self.m_choiceSpeechAmount.SetSelection(Speech_Verbosity.index(user_preferences["Speech"]["Verbosity"]))
403
self.m_sliderRelativeSpeed.SetValue(user_preferences["Speech"]["MathRate"])
404
pause_factor = (
0 commit comments