diff --git a/src/vs/workbench/parts/debug/browser/debugEditorModelManager.ts b/src/vs/workbench/parts/debug/browser/debugEditorModelManager.ts index 7539390ad9a70ecb020fa0d5d3f6aaf1b9c368f8..2717c54ee2a7c371ac04670e91c549cc34a57c28 100644 --- a/src/vs/workbench/parts/debug/browser/debugEditorModelManager.ts +++ b/src/vs/workbench/parts/debug/browser/debugEditorModelManager.ts @@ -254,7 +254,8 @@ export class DebugEditorModelManager implements IWorkbenchContribution { private createBreakpointDecorations(breakpoints: IBreakpoint[]): editorcommon.IModelDeltaDecoration[] { const activated = this.debugService.getModel().areBreakpointsActivated(); - const debugActive = this.debugService.getState() === State.Running || this.debugService.getState() === State.Stopped; + const state = this.debugService.getState(); + const debugActive = state === State.Running || state === State.Stopped || state === State.Initializing; return breakpoints.map((breakpoint) => { return { options: (!breakpoint.enabled || !activated) ? DebugEditorModelManager.BREAKPOINT_DISABLED_DECORATION :