From cd6d1ffc424bb4f49f016ac5c4ba7c1b08d3bc57 Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Wed, 16 Aug 2017 00:26:58 +0200 Subject: [PATCH] enable loaded scripts explorer form debug type 'chrome'; fixes #32445 --- src/vs/workbench/parts/debug/electron-browser/debugService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index d7292246b5a..456902560b3 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -839,7 +839,7 @@ export class DebugService implements debug.IDebugService { this.extensionService.activateByEvent(`onDebug:${configuration.type}`).done(null, errors.onUnexpectedError); this.inDebugMode.set(true); this.debugType.set(configuration.type); - this.isNodeDebugType.set(configuration.type === 'node' || configuration.type === 'node2' || configuration.type === 'extensionHost'); + this.isNodeDebugType.set(configuration.type === 'node' || configuration.type === 'node2' || configuration.type === 'extensionHost' || configuration.type === 'chrome'); if (this.model.getProcesses().length > 1) { this.viewModel.setMultiProcessView(true); }