diff --git a/src/js/theme-controller.js b/src/js/theme-controller.js index 1a9bb092f..903cda18b 100644 --- a/src/js/theme-controller.js +++ b/src/js/theme-controller.js @@ -127,9 +127,9 @@ export function clearPreview() { if (isPreviewingTheme) { isPreviewingTheme = false; if (Config.customTheme) { - apply("custom"); + apply("custom", true); } else { - apply(Config.theme); + apply(Config.theme, true); } } }