We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b40e1 commit 3823da7Copy full SHA for 3823da7
src/ui/views/objectBrowser.ts
@@ -737,8 +737,10 @@ export function initializeObjectBrowser(context: vscode.ExtensionContext) {
737
});
738
739
if (changeResult.code === 0) {
740
+ //pre updating description to avoid old description when multiple updates are performed without refreshing
741
node.description = newText.toUpperCase() !== `*BLANK` ? newText : ``;
- objectBrowser.refresh(node.parent?.parent);
742
+ node.member.text = newText.toUpperCase() !== `*BLANK` ? newText : ``;
743
+ objectBrowser.refresh(node);
744
} else {
745
vscode.window.showErrorMessage(vscode.l10n.t(`Error changing member description! {0}`, changeResult.stderr));
746
}
0 commit comments