ITheme -> IColorTheme

This commit is contained in:
Martin Aeschlimann
2020-03-02 22:18:51 +01:00
parent e7f525fbad
commit 6d4f8310a9
87 changed files with 307 additions and 315 deletions

View File

@@ -22,8 +22,8 @@ export class MainThreadTheming implements MainThreadThemingShape {
this._themeService = themeService;
this._proxy = extHostContext.getProxy(ExtHostContext.ExtHostTheming);
this._themeChangeListener = this._themeService.onThemeChange(e => {
this._proxy.$onColorThemeChange(this._themeService.getTheme().type);
this._themeChangeListener = this._themeService.onDidColorThemeChange(e => {
this._proxy.$onColorThemeChange(this._themeService.getColorTheme().type);
});
}