提交 c14729f0 编写于 作者: B Benjamin Pasero

Going from untitled to saved workspace should not show message again (fixes #37303)

上级 2e7c321c
...@@ -145,8 +145,10 @@ export class WorkspaceEditingService implements IWorkspaceEditingService { ...@@ -145,8 +145,10 @@ export class WorkspaceEditingService implements IWorkspaceEditingService {
if (result) { if (result) {
return this.migrate(result.workspace).then(() => { return this.migrate(result.workspace).then(() => {
// Show message to user (once) // Show message to user (once) if entering workspace state
this.informUserOnce(); // TODO@Ben remove me after a couple of releases if (this.contextService.getWorkbenchState() !== WorkbenchState.WORKSPACE) {
this.informUserOnce(); // TODO@Ben remove me after a couple of releases
}
// Reinitialize backup service // Reinitialize backup service
const backupFileService = this.backupFileService as BackupFileService; // TODO@Ben ugly cast const backupFileService = this.backupFileService as BackupFileService; // TODO@Ben ugly cast
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册