Extension API: window.activeColorTheme does not report the correct theme. Fixes #97369

This commit is contained in:
Martin Aeschlimann
2020-05-12 09:41:14 +02:00
parent 9798bdde87
commit bafca191f5

View File

@@ -25,6 +25,7 @@ export class MainThreadTheming implements MainThreadThemingShape {
this._themeChangeListener = this._themeService.onDidColorThemeChange(e => {
this._proxy.$onColorThemeChange(this._themeService.getColorTheme().type);
});
this._proxy.$onColorThemeChange(this._themeService.getColorTheme().type);
}
dispose(): void {