Skip to content

Commit fb11f14

Browse files
committed
Pass focus back (fixes microsoft#93090)
1 parent f124103 commit fb11f14

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/vs/base/parts/quickinput/browser/quickInputList.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,9 @@ export class QuickInputList {
317317
this._onLeave.fire();
318318
}
319319
}));
320+
this.disposables.push(this.list.onMouseMiddleClick(e => {
321+
this._onLeave.fire();
322+
}));
320323
this.disposables.push(this.list.onContextMenu(e => {
321324
if (typeof e.index === 'number') {
322325
e.browserEvent.preventDefault();

0 commit comments

Comments
 (0)