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 c22d13a commit fc909f8Copy full SHA for fc909f8
Extension/src/LanguageServer/ui_new.ts
@@ -175,6 +175,10 @@ export class NewUI implements UI {
175
176
private dbTimeout?: NodeJS.Timeout;
177
private setIsParsingWorkspace(val: boolean): void {
178
+ if (!val && this.isParsingWorkspacePaused) {
179
+ // Unpause before handling the no longer parsing state.
180
+ this.setIsParsingWorkspacePaused(false);
181
+ }
182
this.isParsingWorkspace = val;
183
const showIcon: boolean = val || this.isParsingFiles;
184
0 commit comments