We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 655df8f commit 7a4a4deCopy full SHA for 7a4a4de
1 file changed
src/vs/workbench/contrib/splash/electron-browser/partsSplash.contribution.ts
@@ -60,10 +60,12 @@ class PartsSplash {
60
if (e.affectsConfiguration('window.titleBarStyle')) {
61
this._didChangeTitleBarStyle = true;
62
this._savePartsSplash();
63
- } else if (e.affectsConfiguration('workbench.colorTheme') || e.affectsConfiguration('workbench.colorCustomizations')) {
64
- this._savePartsSplash();
65
}
66
}, this, this._disposables);
+
+ _themeService.onThemeChange(_ => {
67
+ this._savePartsSplash();
68
+ }, this, this._disposables);
69
70
71
dispose(): void {
0 commit comments