mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-02 06:14:15 +01:00
fixes #21080
This commit is contained in:
@@ -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;
|
||||
});
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user