From 0abec8e032a4d1d924cc646bf46d02f8b1009ba9 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 25 Aug 2025 16:27:03 -0400 Subject: rm disable logic across hdr and wsi, was causing issues w custom profiles and upgrades --- src/components/ConfigurationSection.tsx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 0f1f02a..319168b 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -109,9 +109,8 @@ export function ConfigurationSection({ onConfigChange(HDR_MODE, value)} /> @@ -160,14 +159,7 @@ export function ConfigurationSection({ label="Enable WSI" description="Re-Enable Gamescope WSI Layer. Requires game restart to apply." checked={config.enable_wsi} - disabled={config.hdr_mode} - onChange={(value) => { - if (!value && config.hdr_mode) { - // Turn off HDR when disabling WSI - onConfigChange(HDR_MODE, false); - } - onConfigChange(ENABLE_WSI, value); - }} + onChange={(value) => onConfigChange(ENABLE_WSI, value)} /> -- cgit v1.2.3