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 5e96765 commit 34745e0Copy full SHA for 34745e0
Extension/src/LanguageServer/ui_new.ts
@@ -207,6 +207,10 @@ export class NewUI implements UI {
207
}
208
209
private setIsParsingWorkspacePaused(val: boolean): void {
210
+ if (!this.isParsingFiles && !this.isParsingWorkspace) {
211
+ // Ignore a pause change if no parsing is actually happening.
212
+ return;
213
+ }
214
this.isParsingWorkspacePaused = val;
215
this.browseEngineStatusBarItem.busy = !val || this.isParsingFiles;
216
this.browseEngineStatusBarItem.text = "$(database)";
0 commit comments