From d8a80d8218c046fc65db12b85b09774f0d805bb2 Mon Sep 17 00:00:00 2001 From: Miodec Date: Mon, 2 Oct 2023 18:10:29 +0100 Subject: [PATCH] fix(themes): custom themes not working --- frontend/src/ts/controllers/theme-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/controllers/theme-controller.ts b/frontend/src/ts/controllers/theme-controller.ts index 990c47ebe..b8d328beb 100644 --- a/frontend/src/ts/controllers/theme-controller.ts +++ b/frontend/src/ts/controllers/theme-controller.ts @@ -177,7 +177,7 @@ const debouncedPreview = debounce( ); function set(themeIdentifier: string, isAutoSwitch = false): void { - apply(themeIdentifier, undefined, true); + apply(themeIdentifier, undefined, isAutoSwitch); if (!isAutoSwitch && Config.autoSwitchTheme) { setAutoSwitchTheme(false);