From 057fdce8e43bb8bba78899286c77a6287e6b7e08 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Sat, 26 Jul 2025 10:40:26 -0400 Subject: move wsi to top of workarounds --- src/components/ConfigurationSection.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src') 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 && ( <> + + onConfigChange(DEACTIVATE_WSI, value)} + /> + + - - - onConfigChange(DEACTIVATE_WSI, value)} - /> - )} -- cgit v1.2.3 From 7950c2c227c387b0063c52db575eb493ad992e30 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Sat, 26 Jul 2025 10:45:09 -0400 Subject: set wsi disable toggled on by default --- src/config/generatedConfigSchema.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/config/generatedConfigSchema.ts b/src/config/generatedConfigSchema.ts index 1ce08f4..dfd80db 100644 --- a/src/config/generatedConfigSchema.ts +++ b/src/config/generatedConfigSchema.ts @@ -107,7 +107,7 @@ export const CONFIG_SCHEMA: Record = { deactivate_wsi: { name: "deactivate_wsi", fieldType: ConfigFieldType.BOOLEAN, - default: false, + default: true, description: "Deactivates Gamescope WSI Layer, use with HDR off, workaround if frame generation isn't applying or isn't feeling smooth" }, }; @@ -148,7 +148,7 @@ export function getDefaults(): ConfigurationData { mangohud_workaround: false, disable_vkbasalt: false, force_enable_vkbasalt: false, - deactivate_wsi: false, + deactivate_wsi: true, }; } -- cgit v1.2.3