From 598e41cfe3d1b67adb78430fb7a562e2f848f7ed Mon Sep 17 00:00:00 2001 From: Sword Date: Tue, 27 Jan 2026 10:31:50 +0800 Subject: [PATCH] fix: restore platform default for stop shortcut --- src/utils/shortcuts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/shortcuts.ts b/src/utils/shortcuts.ts index 8a33258cf..0d6eb1cf6 100644 --- a/src/utils/shortcuts.ts +++ b/src/utils/shortcuts.ts @@ -157,7 +157,7 @@ export function isMacPlatform(): boolean { } export function getDefaultInterruptShortcut(): string { - return "ctrl+shift+c"; + return isMacPlatform() ? "ctrl+c" : "ctrl+shift+c"; } export function toMenuAccelerator(value: string | null | undefined): string | null {