Skip to content

Commit 9074a95

Browse files
author
Jackson Kearl
authored
Don't involve pure modifier keys when resolving if in-chord (#139254)
Fixes #139152
1 parent 0f265a3 commit 9074a95

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/vs/platform/list/browser/listService.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,10 @@ function createKeyboardNavigationEventFilter(container: HTMLElement, keybindingS
800800
let inChord = false;
801801

802802
return event => {
803+
if (event.toKeybinding().isModifierKey()) {
804+
return false;
805+
}
806+
803807
if (inChord) {
804808
inChord = false;
805809
return false;

0 commit comments

Comments
 (0)