This commit is contained in:
isidor
2017-02-23 14:42:35 +01:00
parent ebd4977133
commit e64b50cee5
@@ -66,7 +66,10 @@ export class DebugEditorModelManager implements IWorkbenchContribution {
this.toDispose.push(this.debugService.getViewModel().onDidFocusStackFrame(() => this.onFocusStackFrame()));
this.toDispose.push(this.debugService.onDidChangeState(() => {
if (this.debugService.state === State.Inactive) {
this.modelDataMap.forEach(modelData => modelData.dirty = false);
this.modelDataMap.forEach(modelData => {
modelData.dirty = false;
modelData.topStackFrameLine = undefined;
});
}
}));
}