summaryrefslogtreecommitdiff
path: root/src/components/ConfigurationSection.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-26 14:57:55 -0400
committerGitHub <noreply@github.com>2025-07-26 14:57:55 -0400
commitef0a090c31d8890ff069f387ba9b94e744014768 (patch)
treea297382b9f0d2c77b14fc3f12597b43a760c6ec0 /src/components/ConfigurationSection.tsx
parentb4fbaf233f6e190001cb40f4f0cc87cc5365e622 (diff)
parentab8ddfef740ad2877e4d82be6471474c89755653 (diff)
downloaddecky-lsfg-vk-ef0a090c31d8890ff069f387ba9b94e744014768.tar.gz
decky-lsfg-vk-ef0a090c31d8890ff069f387ba9b94e744014768.zip
Merge pull request #97 from xXJSONDeruloXx/wsi-and-hdr
feat: default to have Gamescope WSI disabled, add "Enable Gamescope WSI" toggle
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
-rw-r--r--src/components/ConfigurationSection.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index c1fcf25..d208f97 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -6,7 +6,7 @@ import { FpsMultiplierControl } from "./FpsMultiplierControl";
import {
FLOW_SCALE, PERFORMANCE_MODE, HDR_MODE,
EXPERIMENTAL_PRESENT_MODE, DXVK_FRAME_RATE, DISABLE_STEAMDECK_MODE,
- MANGOHUD_WORKAROUND, DISABLE_VKBASALT, FORCE_ENABLE_VKBASALT, DEACTIVATE_WSI
+ MANGOHUD_WORKAROUND, DISABLE_VKBASALT, FORCE_ENABLE_VKBASALT, ENABLE_WSI
} from "../config/generatedConfigSchema";
interface ConfigurationSectionProps {
@@ -163,10 +163,10 @@ export function ConfigurationSection({
<>
<PanelSectionRow>
<ToggleField
- label="Deactivate WSI"
- description="Deactivates Gamescope WSI Layer, use with HDR off, workaround if frame generation isn't applying or isn't feeling smooth"
- checked={config.deactivate_wsi}
- onChange={(value) => onConfigChange(DEACTIVATE_WSI, value)}
+ label="Enable WSI"
+ description="Enable Gamescope WSI Layer, disable if frame generation isn't applying or isn't feeling smooth (use with HDR off)"
+ checked={config.enable_wsi}
+ onChange={(value) => onConfigChange(ENABLE_WSI, value)}
/>
</PanelSectionRow>