summaryrefslogtreecommitdiff
path: root/src/components/ConfigurationSection.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-08-25 16:37:05 -0400
committerGitHub <noreply@github.com>2025-08-25 16:37:05 -0400
commit3f6fdd9f0e565b72402032a5381567fd5f7e9793 (patch)
treeff0a045d3058a76e72bcf73d91effc26264cb327 /src/components/ConfigurationSection.tsx
parent189c7b3ad25ec1cfc0fce22047a567786371ddce (diff)
parent026e58d6966aa8596c791455bffa54cd04c025ef (diff)
downloaddecky-lsfg-vk-3f6fdd9f0e565b72402032a5381567fd5f7e9793.tar.gz
decky-lsfg-vk-3f6fdd9f0e565b72402032a5381567fd5f7e9793.zip
Merge pull request #161 from xXJSONDeruloXx/rebrandv0.10.6
initial rename work
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
-rw-r--r--src/components/ConfigurationSection.tsx12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 0f1f02a..094cb02 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -109,9 +109,8 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
label="HDR Mode"
- description={config.enable_wsi ? "Enables HDR mode (only for games that support HDR)" : "Enable WSI in the workarounds menu to unlock HDR toggle"}
+ description="Enables HDR mode (only for games that support HDR)"
checked={config.hdr_mode}
- disabled={!config.enable_wsi}
onChange={(value) => onConfigChange(HDR_MODE, value)}
/>
</PanelSectionRow>
@@ -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)}
/>
</PanelSectionRow>