Skip to content

Commit fd654fa

Browse files
committed
1 parent 6d29204 commit fd654fa

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/vs/base/browser/ui/selectBox/selectBoxCustom.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,7 @@ export class SelectBoxList extends Disposable implements ISelectBoxDelegate, ILi
743743
.map(e => new StandardKeyboardEvent(e));
744744

745745
this._register(onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.Enter).on(e => this.onEnter(e), this));
746+
this._register(onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.Tab).on(e => this.onEnter(e), this));
746747
this._register(onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.Escape).on(e => this.onEscape(e), this));
747748
this._register(onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.UpArrow).on(e => this.onUpArrow(e), this));
748749
this._register(onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.DownArrow).on(e => this.onDownArrow(e), this));

0 commit comments

Comments
 (0)