Skip to content

Commit fc909f8

Browse files
authored
Fix incorrect workspace parsing status. (#10974)
1 parent c22d13a commit fc909f8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Extension/src/LanguageServer/ui_new.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,10 @@ export class NewUI implements UI {
175175

176176
private dbTimeout?: NodeJS.Timeout;
177177
private setIsParsingWorkspace(val: boolean): void {
178+
if (!val && this.isParsingWorkspacePaused) {
179+
// Unpause before handling the no longer parsing state.
180+
this.setIsParsingWorkspacePaused(false);
181+
}
178182
this.isParsingWorkspace = val;
179183
const showIcon: boolean = val || this.isParsingFiles;
180184

0 commit comments

Comments
 (0)