Fixed mac "Full Stop" on startup

merge-requests/237/merge
Tag 2023-02-21 17:12:01 -08:00
rodzic bc6cf78341
commit c9f2e60163
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -12771,7 +12771,7 @@ function initSpeech()
{ {
nodeTimers.setTimeout(timedGetVoices, 500); nodeTimers.setTimeout(timedGetVoices, 500);
}; };
var msg = new SpeechSynthesisUtterance("."); var msg = new SpeechSynthesisUtterance("\n");
msg.lang = GT.localeString; msg.lang = GT.localeString;
window.speechSynthesis.speak(msg); window.speechSynthesis.speak(msg);
} }