enable loaded scripts explorer form debug type 'chrome'; fixes #32445

This commit is contained in:
Andre Weinand
2017-08-16 00:26:58 +02:00
committed by GitHub
parent 59422c1247
commit cd6d1ffc42
@@ -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);
}