Skip to content

Commit e8b4884

Browse files
committed
playing around with adding a beep
1 parent 2a6c68f commit e8b4884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NVDA-addon/addon/globalPlugins/MathCAT/MathCAT.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def getSpeechForMathMl(self, mathml):
297297
speech.speakMessage(_("Illegal MathML found: see NVDA error log for details"))
298298
libmathcat.SetMathML("<math></math>") # set it to something
299299
try:
300-
return ConvertSSMLTextForNVDA(libmathcat.GetSpokenText())
300+
return [BeepCommand(800,25)] + ConvertSSMLTextForNVDA(libmathcat.GetSpokenText()) + [BeepCommand(600,15)]
301301
except Exception as e:
302302
log.error(e)
303303
speech.speakMessage(_("Error in speaking math: see NVDA error log for details"))

0 commit comments

Comments
 (0)