Skip to content

Commit 0170eca

Browse files
committed
Now only show message in the vscode status bar when png file has been saved.
1 parent b162663 commit 0170eca

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
@@ -65,7 +65,7 @@ export class ShowHierarchyBase extends CommandBase {
6565
const newFilePath = path.join(this.workspaceDirectory, pngFilename);
6666
this.fsUtils.writeFile(newFilePath, u8arr, () => { });
6767

68-
vscode.window.showInformationMessage(`The file ${pngFilename} has been created in the root of the workspace.`);
68+
vscode.window.setStatusBarMessage(`The file ${pngFilename} has been created in the root of the workspace.`);
6969
}
7070
}
7171

0 commit comments

Comments
 (0)