未验证 提交 3b661acc 编写于 作者: M Martin Aeschlimann 提交者: GitHub

Merge pull request #71855 from JimiC/themes_fix_explorer_notification

[themes] Fix explorer arrows notification on reload
......@@ -214,7 +214,10 @@ export class WorkbenchThemeService implements IWorkbenchThemeService {
}
if (this.watchedIconThemeLocation && this.currentIconTheme && e.contains(this.watchedIconThemeLocation, FileChangeType.UPDATED)) {
await this.currentIconTheme.reload(this.fileService);
_applyIconTheme(this.currentIconTheme, () => Promise.resolve(this.currentIconTheme));
_applyIconTheme(this.currentIconTheme, () => {
this.doSetFileIconTheme(this.currentIconTheme);
return Promise.resolve(this.currentIconTheme);
});
}
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册