Skip to content

Commit

Permalink
Do not set focus when QuickOpen opens (microsoft#49340)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmarti committed Jun 13, 2018
1 parent f4b89e0 commit cde58ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/parts/quickinput/quickInput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit cde58ce

Please sign in to comment.