From 0cca67f900201849fae8167695255abf8b2c51ab Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 2 Feb 2026 16:24:46 -0800 Subject: [PATCH] Fix graphics options not hidden when Software renderer is pre-selected (#15) Call showOrHideGraphicsOptions() after loading config from OPFS to ensure Anti-aliasing and Anisotropic filtering are properly hidden when the Software renderer is already configured in the INI file. --- src/lib/ConfigurePage.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ConfigurePage.svelte b/src/lib/ConfigurePage.svelte index c8a0a54..d03a70b 100644 --- a/src/lib/ConfigurePage.svelte +++ b/src/lib/ConfigurePage.svelte @@ -68,6 +68,7 @@ // Save defaults silently (no toast on initial creation) await saveConfig(configForm, getSiFiles, true); } + showOrHideGraphicsOptions(); } // Check cache status