We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1830d4d commit 4d954f7Copy full SHA for 4d954f7
1 file changed
src/languageStatusItemFactory.ts
@@ -63,6 +63,9 @@ export namespace ServerStatusItemFactory {
63
}
64
65
export function setBusy(item: any): void {
66
+ if (item.busy === true) {
67
+ return;
68
+ }
69
item.text = "Building";
70
item.busy = true;
71
@@ -91,6 +94,9 @@ export namespace ServerStatusItemFactory {
91
94
92
95
93
96
export function setReady(item: any): void {
97
+ if (item.text === StatusIcon.Ready) {
98
99
100
item.busy = false;
101
item.severity = vscode.LanguageStatusSeverity?.Information;
102
item.command = StatusCommands.showServerStatusCommand;
0 commit comments