diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-26 10:40:26 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-26 10:40:26 -0400 |
| commit | 057fdce8e43bb8bba78899286c77a6287e6b7e08 (patch) | |
| tree | 55df6bdafe0631902cb66cde9d0c9b3d96f3bc62 | |
| parent | c6ae060757a2f19f60681639b4f73a6bd075f5d7 (diff) | |
| download | decky-lsfg-vk-057fdce8e43bb8bba78899286c77a6287e6b7e08.tar.gz decky-lsfg-vk-057fdce8e43bb8bba78899286c77a6287e6b7e08.zip | |
move wsi to top of workarounds
| -rw-r--r-- | src/components/ConfigurationSection.tsx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 57c75ad..c1fcf25 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -161,6 +161,15 @@ export function ConfigurationSection({ {!workaroundsCollapsed && ( <> + <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)} + /> + </PanelSectionRow> + <PanelSectionRow> <ToggleField label="Enable WOW64 for 32-bit games" @@ -219,15 +228,6 @@ export function ConfigurationSection({ }} /> </PanelSectionRow> - - <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)} - /> - </PanelSectionRow> </> )} </> |
