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 d5d51ba commit 536960bCopy full SHA for 536960b
src/vs/platform/quickinput/browser/quickInputController.ts
@@ -183,7 +183,11 @@ export class QuickInputController extends Disposable {
183
}));
184
this._register(list.onLeave(() => {
185
// Defer to avoid the input field reacting to the triggering key.
186
+ // TODO@TylerLeonhardt https://github.com/microsoft/vscode/issues/203675
187
setTimeout(() => {
188
+ if (!this.controller) {
189
+ return;
190
+ }
191
inputBox.setFocus();
192
if (this.controller instanceof QuickPick && this.controller.canSelectMany) {
193
list.clearFocus();
0 commit comments