From c9f2e601632f1d410964ce82a912ed0f133cd521 Mon Sep 17 00:00:00 2001 From: Tag Date: Tue, 21 Feb 2023 17:12:01 -0800 Subject: [PATCH] Fixed mac "Full Stop" on startup --- package.nw/lib/gt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.nw/lib/gt.js b/package.nw/lib/gt.js index 8c43b82..8c81dd3 100644 --- a/package.nw/lib/gt.js +++ b/package.nw/lib/gt.js @@ -12771,7 +12771,7 @@ function initSpeech() { nodeTimers.setTimeout(timedGetVoices, 500); }; - var msg = new SpeechSynthesisUtterance("."); + var msg = new SpeechSynthesisUtterance("\n"); msg.lang = GT.localeString; window.speechSynthesis.speak(msg); }