提交 b66f2506 编写于 作者: I isidor

debug: verified breakpoint should have priority over dirty file

上级 0a087494
......@@ -278,7 +278,7 @@ export class DebugEditorModelManager implements IWorkbenchContribution {
const session = this.debugService.getActiveSession();
let result = (!breakpoint.enabled || !activated) ? DebugEditorModelManager.BREAKPOINT_DISABLED_DECORATION :
debugActive && modelData && modelData.dirty ? DebugEditorModelManager.BREAKPOINT_DIRTY_DECORATION :
debugActive && modelData && modelData.dirty && !breakpoint.verified ? DebugEditorModelManager.BREAKPOINT_DIRTY_DECORATION :
debugActive && !breakpoint.verified ? DebugEditorModelManager.BREAKPOINT_UNVERIFIED_DECORATION :
!breakpoint.condition ? DebugEditorModelManager.BREAKPOINT_DECORATION : null;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册