summaryrefslogtreecommitdiff
path: root/src/components/ConfigurationSection.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-19 08:40:49 -0400
committerGitHub <noreply@github.com>2025-07-19 08:40:49 -0400
commitf010473bfdf6b9a58960a5dac71fa48837ae6a1c (patch)
treec0392ef13b7cc47bc27369e7840e58fa23e745b7 /src/components/ConfigurationSection.tsx
parentb9302548a4def670c8600086ba8685c075ceac3d (diff)
parent75a94598341899eea5260206975686c05e793956 (diff)
downloaddecky-lsfg-vk-f010473bfdf6b9a58960a5dac71fa48837ae6a1c.tar.gz
decky-lsfg-vk-f010473bfdf6b9a58960a5dac71fa48837ae6a1c.zip
Merge pull request #41 from xXJSONDeruloXx/nerd-stuffv0.6.4
Nerd stuff
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
-rw-r--r--src/components/ConfigurationSection.tsx28
1 files changed, 6 insertions, 22 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 00717bc..ad99c28 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -28,24 +28,6 @@ export function ConfigurationSection({
</div>
</PanelSectionRow>
- {/* <PanelSectionRow>
- <ToggleField
- label="Enable LSFG"
- description="Enables lsfg globally (apply before launching games)"
- checked={config.enable}
- onChange={(value) => onConfigChange('enable', value)}
- />
- </PanelSectionRow> */}
-
- {/* <PanelSectionRow>
- <TextField
- label="Lossless.dll Path"
- description="specify where Lossless.dll is stored"
- value={config.dll}
- onChange={(e) => onConfigChange('dll', e.target.value)}
- />
- </PanelSectionRow> */}
-
<PanelSectionRow>
<SliderField
label="FPS Multiplier"
@@ -56,11 +38,13 @@ export function ConfigurationSection({
step={1}
notchCount={4}
notchLabels={[
- { notchIndex: 1, label: "OFF" },
- { notchIndex: 2, label: "2X" },
- { notchIndex: 3, label: "3X" },
- { notchIndex: 4, label: "4X" }
+ { notchIndex: 0, label: "OFF", value: 1 },
+ { notchIndex: 1, label: "2X", value: 2 },
+ { notchIndex: 2, label: "3X", value: 3 },
+ { notchIndex: 3, label: "4X", value: 4 }
]}
+ showValue={false}
+ notchTicksVisible={true}
onChange={(value) => onConfigChange('multiplier', value)}
/>
</PanelSectionRow>