We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e0b53 commit c82f11bCopy full SHA for c82f11b
user/STAR.py
@@ -432,7 +432,8 @@ def on_quickspeak(self, evt):
432
speech.speak("nothing to speak")
433
return
434
self.script_continuous_preview = False
435
- self.audiospeak(f"{self.voices[voice]['name']}: {self.quickspeak.Value.replace('\n', ' ')}")
+ text_to_quickspeak = self.quickspeak.Value.replace('\n', ' ')
436
+ self.audiospeak(f"{self.voices[voice]['name']}: {text_to_quickspeak}")
437
def on_preview_script(self, evt):
438
"""The script previewing facility, handles ctrl+alt+(space, up and down) calling self.audiospeak for each speech line detected."""
439
pos = self.script.GetInsertionPoint()
0 commit comments