Skip to content

Commit b162663

Browse files
committed
Now only show message in the vscode status bar when dgmlfile has been saved.
1 parent 94e3734 commit b162663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/showHierarchyBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class ShowHierarchyBase extends CommandBase {
8585
// Write the prettified xml string to the ReadMe-ProjectStructure.dgml file.
8686
var directoryPath: string = this.fsUtils.getWorkspaceFolder();
8787
this.fsUtils.writeFile(path.join(directoryPath, dgmlGraphFilename), fileContent, () => {
88-
vscode.window.showInformationMessage(popMessageText);
88+
vscode.window.setStatusBarMessage(popMessageText, 10000);
8989
});
9090
}
9191

0 commit comments

Comments
 (0)