diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-07-15 20:41:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-15 20:41:17 -0400 |
| commit | 52b2b5fbce49a19abc0b1e55db83b2d67903312f (patch) | |
| tree | e86b7bbafc74c68683617904bf77092fc6361c05 /src/components/ConfigurationSection.tsx | |
| parent | 92cce332191f9150cbd85d01423ee20a680d8246 (diff) | |
| parent | ec4541dd78f4e2a58b679b20740f323d8ce76698 (diff) | |
| download | decky-lsfg-vk-52b2b5fbce49a19abc0b1e55db83b2d67903312f.tar.gz decky-lsfg-vk-52b2b5fbce49a19abc0b1e55db83b2d67903312f.zip | |
Merge pull request #14 from xXJSONDeruloXx/remote-bumpv0.3.1
v0.3.1
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
| -rw-r--r-- | src/components/ConfigurationSection.tsx | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index ee18e5b..34955f8 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -7,6 +7,7 @@ interface LsfgConfig { hdr: boolean; perfMode: boolean; immediateMode: boolean; + disableVkbasalt: boolean; } interface ConfigurationSectionProps { @@ -17,6 +18,7 @@ interface ConfigurationSectionProps { onHdrChange: (value: boolean) => Promise<void>; onPerfModeChange: (value: boolean) => Promise<void>; onImmediateModeChange: (value: boolean) => Promise<void>; + onDisableVkbasaltChange: (value: boolean) => Promise<void>; } export function ConfigurationSection({ @@ -26,7 +28,8 @@ export function ConfigurationSection({ onFlowScaleChange, onHdrChange, onPerfModeChange, - onImmediateModeChange + onImmediateModeChange, + onDisableVkbasaltChange }: ConfigurationSectionProps) { return ( <> @@ -110,6 +113,15 @@ export function ConfigurationSection({ onChange={onImmediateModeChange} /> </PanelSectionRow> + + {/* <PanelSectionRow> + <ToggleField + label="Disable vkbasalt" + description="Some plugins add vkbasalt layer, which can break lsfg. Toggling on fixes this" + checked={config.disableVkbasalt} + onChange={onDisableVkbasaltChange} + /> + </PanelSectionRow> */} </> ); } |
