From 11bf7163daf41555ade028d4a5b61434ad5aa837 Mon Sep 17 00:00:00 2001 From: jake Date: Tue, 17 Mar 2026 02:09:48 +0000 Subject: [PATCH] =?UTF-8?q?fix(kon):=20hotkey=20event=20mismatch=20?= =?UTF-8?q?=E2=80=94=20layout=20now=20dispatches=20kon:toggle-recording?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- src/routes/+layout.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 762cf84..e62b9f1 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -58,7 +58,7 @@ await mod.register(hotkey, () => { if (page.current !== "dictation") page.current = "dictation"; requestAnimationFrame(() => { - window.dispatchEvent(new CustomEvent("ramble:toggle-recording")); + window.dispatchEvent(new CustomEvent("kon:toggle-recording")); }); }); registeredHotkey = hotkey;