made sure to apply custom theme colors

This commit is contained in:
Jack 2020-07-02 20:50:16 +01:00
parent 16ee3a9422
commit 246b28a192

View file

@ -482,7 +482,10 @@ function setCustomTheme(boolean, nosave) {
}
function setCustomThemeColors(colors, nosave){
if(colors !== undefined) config.customThemeColors = colors;
if(colors !== undefined){
config.customThemeColors = colors;
applyCustomThemeColors();
}
if(!nosave) saveConfigToCookie();
}