From 2347d477ae4a6e28ae3be7b7fc5787f5169b6b76 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 24 May 2025 20:52:37 +0200 Subject: [PATCH] Remove threshold live save functionality in settings.html --- settings.html | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/settings.html b/settings.html index 8c21a7c..4256ef8 100644 --- a/settings.html +++ b/settings.html @@ -100,17 +100,6 @@ await window.settingsAPI.setSkyMode(cbSky.checked); }); - // Threshold live speichern + clamp - /* - thresholdInput.addEventListener('blur', async () => { - let v = parseInt(thresholdInput.value, 10); - if (isNaN(v)) v = initialThreshold; // wenn komplett leer gelassen - if (v < 1) v = 1; - if (v > 1000) v = 1000; - thresholdInput.value = v; - await window.settingsAPI.setIntelligentCommitThreshold(v); - }); - */ // OK: alles final speichern ok.addEventListener('click', async () => {