We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a6c68f commit e8b4884Copy full SHA for e8b4884
NVDA-addon/addon/globalPlugins/MathCAT/MathCAT.py
@@ -297,7 +297,7 @@ def getSpeechForMathMl(self, mathml):
297
speech.speakMessage(_("Illegal MathML found: see NVDA error log for details"))
298
libmathcat.SetMathML("<math></math>") # set it to something
299
try:
300
- return ConvertSSMLTextForNVDA(libmathcat.GetSpokenText())
+ return [BeepCommand(800,25)] + ConvertSSMLTextForNVDA(libmathcat.GetSpokenText()) + [BeepCommand(600,15)]
301
except Exception as e:
302
log.error(e)
303
speech.speakMessage(_("Error in speaking math: see NVDA error log for details"))
0 commit comments