Fix: Theme Saving

This commit is contained in:
MasterAcnolo
2026-04-11 16:37:35 +02:00
parent 3c30e49523
commit 4d77e843af

View File

@@ -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);
});