From 9f88fe19c36163dfc077d02e010e39aa4d9d39cc Mon Sep 17 00:00:00 2001 From: MasterAcnolo <68693319+MasterAcnolo@users.noreply.github.com> Date: Sat, 11 Apr 2026 16:37:35 +0200 Subject: [PATCH] Fix: Theme Saving --- public/script/settingsPanel.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/script/settingsPanel.js b/public/script/settingsPanel.js index 50fd402..40080fd 100644 --- a/public/script/settingsPanel.js +++ b/public/script/settingsPanel.js @@ -27,6 +27,7 @@ async function loadSettings() { } el.addEventListener("change", () => { + if (key === "theme") return; let value = el.type === "checkbox" ? el.checked : el.value; window.electronAPI.setFeature(key, value); });