mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 09:59:47 -05:00
don't change focus to file explorer viewlet when automatically opening sql projects in the open folder (#11583)
This commit is contained in:
@@ -106,7 +106,8 @@ export default class MainController implements vscode.Disposable {
|
||||
let results = await glob(sqlprojFilter);
|
||||
|
||||
for (let f in results) {
|
||||
await this.projectsController.openProject(vscode.Uri.file(results[f]));
|
||||
// open the project, but don't switch focus to the file explorer viewlet
|
||||
await this.projectsController.openProject(vscode.Uri.file(results[f]), false);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user