summaryrefslogtreecommitdiff
path: root/src/components/ConfigurationSection.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-18 12:46:16 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-18 12:46:16 -0400
commit7d109dbd4d3c7228faef7554bda60d95fa235506 (patch)
treeaa914b1ccc4b69404e2877493a224b6451722723 /src/components/ConfigurationSection.tsx
parent420571823c13345112ff608818b47b6b02d23fb4 (diff)
downloaddecky-lsfg-vk-7d109dbd4d3c7228faef7554bda60d95fa235506.tar.gz
decky-lsfg-vk-7d109dbd4d3c7228faef7554bda60d95fa235506.zip
update descriptions and layouts
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
-rw-r--r--src/components/ConfigurationSection.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 19c10ea..8aeded7 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -67,7 +67,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<SliderField
label={`Flow Scale ${Math.round(config.flow_scale * 100)}%`}
- description="change the flow scale (lower = faster)"
+ description="Changes the flow scale (lower = faster)"
value={config.flow_scale}
min={0.25}
max={1.0}
@@ -79,7 +79,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
label="Performance Mode"
- description="use lighter model for FG"
+ description="Uses a lighter model for FG (Recommended for most games)"
checked={config.performance_mode}
onChange={(value) => onConfigChange('performance_mode', value)}
/>
@@ -118,7 +118,7 @@ export function ConfigurationSection({
selectedOption={config.experimental_present_mode}
onChange={(value) => onConfigChange('experimental_present_mode', value.data)}
rgOptions={[
- { data: "", label: "Default (FIFO)" },
+ { data: "", label: "Default" },
{ data: "fifo", label: "FIFO" },
{ data: "vsync", label: "VSync" },
{ data: "mailbox", label: "Mailbox" },
@@ -130,7 +130,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<SliderField
label={`FPS Limit${config.experimental_fps_limit > 0 ? ` (${config.experimental_fps_limit} FPS)` : ' (Off)'}`}
- description="Base framerate cap for DirectX games, before frame multiplier (0 = disabled)"
+ description="Base framerate cap for DirectX games, before frame multiplier"
value={config.experimental_fps_limit}
min={0}
max={60}