summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-14 09:49:46 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-14 09:49:46 -0400
commitf402358544c6edc75b55ec034a8d4cdd7cd87d7e (patch)
treed56d037b89399a53a27fd856cf31d94bca389ca4
parent3b007d74cda29456fe142b59bf53912c8e8a7206 (diff)
downloaddecky-lsfg-vk-f402358544c6edc75b55ec034a8d4cdd7cd87d7e.tar.gz
decky-lsfg-vk-f402358544c6edc75b55ec034a8d4cdd7cd87d7e.zip
revise tooltip descriptions
-rw-r--r--src/components/ConfigurationSection.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 707ad2a..803508a 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -75,7 +75,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<SliderField
label={`Flow Scale ${Math.round(config.flowScale * 100)}%`}
- description="Lowers the generated frame's resolution"
+ description="Lowers the internal motion estimation resolution"
value={config.flowScale}
min={0.25}
max={1.0}
@@ -96,7 +96,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
label="Performance Mode"
- description="Use lighter model for FG (experimental)"
+ description="Use lighter model for FG"
checked={config.perfMode}
onChange={onPerfModeChange}
/>
@@ -105,7 +105,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
label="Immediate Mode"
- description="Disable vsync for reduced input lag"
+ description="Disable vsync for reduced input lag (experimental, may break some games)"
checked={config.immediateMode}
onChange={onImmediateModeChange}
/>