From e3362606fd0ea282f813b5c450a41200d70663c1 Mon Sep 17 00:00:00 2001 From: Matteo Benedetto Date: Thu, 13 Aug 2026 16:41:25 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20keybinding=20annulla=20registrazione:=20c?= =?UTF-8?q?trl+escape=20=E2=86=92=20ctrl+alt+c=20(in=20legacy=20ctrl+escap?= =?UTF-8?q?e=20invia=20lo=20stesso=20byte=20di=20Esc,=20non=20distinguibil?= =?UTF-8?q?e)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extensions/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/index.ts b/extensions/index.ts index 2ddd15d..8f690ff 100644 --- a/extensions/index.ts +++ b/extensions/index.ts @@ -2266,8 +2266,8 @@ export default function agyExtension(pi: ExtensionAPI) { }, }); - pi.registerShortcut("ctrl+escape", { - description: "Annulla la registrazione microfono in corso", + pi.registerShortcut("ctrl+alt+c", { + description: "Annulla la registrazione microfono in corso (Ctrl+Esc non funziona in legacy: invia lo stesso byte di Esc)", handler: async (ctx) => { if (recording) { await cancelRecording();