From cde58ceb7b804b296e50ee457aa1698f4203180f Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 13 Jun 2018 16:57:36 +0200 Subject: [PATCH] Do not set focus when QuickOpen opens (#49340) --- src/vs/workbench/browser/parts/quickinput/quickInput.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/browser/parts/quickinput/quickInput.ts b/src/vs/workbench/browser/parts/quickinput/quickInput.ts index 5efb7e52c68..6d76cccafa2 100644 --- a/src/vs/workbench/browser/parts/quickinput/quickInput.ts +++ b/src/vs/workbench/browser/parts/quickinput/quickInput.ts @@ -716,7 +716,7 @@ export class QuickInputService extends Component implements IQuickInputService { } })); - this.toUnbind.push(this.quickOpenService.onShow(() => this.hide())); + this.toUnbind.push(this.quickOpenService.onShow(() => this.hide(true))); this.ui = { container, -- GitLab