From 26225a3f4ccbc8633dbccd16fabc175e33a35f47 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 14 Oct 2019 11:04:30 +0200 Subject: [PATCH] partsSlash: latest theme colors not persisted on color change --- .../contrib/splash/electron-browser/partsSplash.contribution.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vs/workbench/contrib/splash/electron-browser/partsSplash.contribution.ts b/src/vs/workbench/contrib/splash/electron-browser/partsSplash.contribution.ts index 69b99fd7c0b..a4f15c50597 100644 --- a/src/vs/workbench/contrib/splash/electron-browser/partsSplash.contribution.ts +++ b/src/vs/workbench/contrib/splash/electron-browser/partsSplash.contribution.ts @@ -60,6 +60,8 @@ class PartsSplash { if (e.affectsConfiguration('window.titleBarStyle')) { this._didChangeTitleBarStyle = true; this._savePartsSplash(); + } else if (e.affectsConfiguration('workbench.colorTheme') || e.affectsConfiguration('workbench.colorCustomizations')) { + this._savePartsSplash(); } }, this, this._disposables); } -- GitLab