Fix the tag parser busy indicator while initializing. (#12404)

This commit is contained in:
Sean McManus 2024-06-24 10:19:58 -07:00 коммит произвёл GitHub
Родитель 0061da69af
Коммит 3933174c29
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -91,6 +91,10 @@ export class LanguageStatusUI {
constructor() {
this.intelliSenseStatusItem = this.createIntelliSenseStatusItem();
this.tagParseStatusItem = this.createTagParseStatusItem();
// The tag parser is always busy when initializing.
// The detail text says "Initializing..." until the tag parser is ready.
this.tagParseStatusItem.busy = true;
this.codeAnalysisStatusItem = this.createCodeAnalysisStatusItem();
this.referencesStatusBarItem = this.createReferencesStatusBarItem();