提交 ebe35b0a 编写于 作者: D Daniel Imms

Show dirty indicators for untitled files

Part of #14038
上级 2d0003bb
......@@ -87,7 +87,8 @@ export class UntitledEditorInput extends AbstractUntitledEditorInput {
return this.cachedModel.isDirty();
}
return this.hasAssociatedFilePath; // untitled files with associated path are always dirty
// untitled files with an associated path or restore resource are always dirty
return this.hasAssociatedFilePath || !!this.restoreResource;
}
public confirmSave(): ConfirmResult {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册