We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acaaa12 commit fba17fbCopy full SHA for fba17fb
1 file changed
src/hotkey.ts
@@ -47,7 +47,8 @@ export function eventToHotkeyString(
47
}
48
49
if (!modifierKeyNames.includes(key)) {
50
- const nonOptionPlaneKey = hotkeyString.includes('Alt') && matchApplePlatform.test(platform) ? macosSymbolLayerKeys[key] ?? key : key
+ const nonOptionPlaneKey =
51
+ hotkeyString.includes('Alt') && matchApplePlatform.test(platform) ? macosSymbolLayerKeys[key] ?? key : key
52
const syntheticKey = syntheticKeyNames[nonOptionPlaneKey] ?? nonOptionPlaneKey
53
hotkeyString.push(syntheticKey)
54
0 commit comments