diff --git a/app/src/protyle/util/hotKey.ts b/app/src/protyle/util/hotKey.ts index 692cdaf6f..8e020ee67 100644 --- a/app/src/protyle/util/hotKey.ts +++ b/app/src/protyle/util/hotKey.ts @@ -113,7 +113,7 @@ export const matchHotKey = (hotKey: string, event: KeyboardEvent) => { } const isMatchKey = keyCode === Constants.KEYCODELIST[event.keyCode]; // 是否匹配 ⌥[] / ⌥⌘[] - if (isMatchKey && event.altKey && !event.shiftKey && + if (isMatchKey && event.altKey && !event.shiftKey && hotKeys.length < 4 && (hotKeys.length === 3 ? (isOnlyMeta(event) && hotKey.startsWith("⌥⌘")) : isNotCtrl(event))) { return true; }