From 42e26ac5bb2430637bd97dcffba409479490d265 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 10 Mar 2020 10:53:45 +0100 Subject: [PATCH] Debug: make sure to open json settings when openning global configurations fixes #92264 --- .../contrib/debug/browser/debugConfigurationManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.ts b/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.ts index 2ce26e4be5f..319ccdb451e 100644 --- a/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.ts +++ b/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.ts @@ -697,7 +697,7 @@ class UserLaunch extends AbstractLaunch implements ILaunch { } async openConfigFile(_: boolean, preserveFocus: boolean): Promise<{ editor: IEditorPane | null, created: boolean }> { - const editor = await this.preferencesService.openGlobalSettings(false, { preserveFocus }); + const editor = await this.preferencesService.openGlobalSettings(true, { preserveFocus }); return ({ editor: withUndefinedAsNull(editor), created: false