Skip to content

Commit f236f35

Browse files
authored
Merge pull request #920 from live-codes/fix-command-menu-hotkey
fix command menu hotkey
2 parents c5a80e2 + 2554614 commit f236f35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/livecodes/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2859,7 +2859,7 @@ const handleCommandMenu = async () => {
28592859
// Ctrl+K opens the command menu
28602860
// do not open the menu if shortcut is Ctrl+Shift+K
28612861
// wait for 500ms to allow other shortcuts like Ctrl+K Ctrl+0
2862-
if (!ctrl(e) || e.shiftKey) {
2862+
if (!ctrl(e) || e.shiftKey || e.altKey) {
28632863
anotherShortcut = false;
28642864
return;
28652865
}

0 commit comments

Comments
 (0)