From 28acdcfa6d6abab85227b69bf72e2286ddf8a991 Mon Sep 17 00:00:00 2001 From: Jake Date: Sun, 19 Apr 2026 21:53:07 +0100 Subject: [PATCH] fix(dictation): show user's configured hotkey in hints, not hardcoded Ctrl+Shift+R Both the status-line hint next to the record button and the empty-state message now read settings.globalHotkey reactively, so 'Press record or Super+E' (or whatever the user has bound) stays in sync with the actual shortcut. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/lib/pages/DictationPage.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/pages/DictationPage.svelte b/src/lib/pages/DictationPage.svelte index 1341d7d..0840ecc 100644 --- a/src/lib/pages/DictationPage.svelte +++ b/src/lib/pages/DictationPage.svelte @@ -708,7 +708,7 @@ Saved{#if extractedCount > 0} ยท {extractedCount} task{extractedCount === 1 ? '' : 's'} extracted{/if} {:else} - Press record or Ctrl+Shift+R + Press record or {settings.globalHotkey} {/if} {/if} @@ -853,7 +853,7 @@ {:else if !transcript.trim() && !page.recording && !transcribing}
- +