diff options
| author | xXJsonDeruloXx <danielhimebauch@gmail.com> | 2026-08-01 12:42:11 -0400 |
|---|---|---|
| committer | xXJsonDeruloXx <danielhimebauch@gmail.com> | 2026-08-01 12:42:11 -0400 |
| commit | 20068abf5692f76e41f4554d394d7185830ca04a (patch) | |
| tree | f61a9b5790cc1cefb00f7734a82d8066aefdaa29 | |
| parent | 81124a948adb0e9e7e165283dadafacf1b25f978 (diff) | |
| download | Decky-Framegen-20068abf5692f76e41f4554d394d7185830ca04a.tar.gz Decky-Framegen-20068abf5692f76e41f4554d394d7185830ca04a.zip | |
fix: stack prefix-managed dropdown controlsfeature/prefix-managed-optiscaler
| -rw-r--r-- | src/components/InstalledGamesSection.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/InstalledGamesSection.tsx b/src/components/InstalledGamesSection.tsx index 5076ffb..54c4b35 100644 --- a/src/components/InstalledGamesSection.tsx +++ b/src/components/InstalledGamesSection.tsx @@ -320,6 +320,7 @@ export function InstalledGamesSection({ isAvailable }: InstalledGamesSectionProp return ( <PanelSectionRow key={setting.id}> <DropdownItem + layout="below" label={setting.label} description={setting.description} rgOptions={options.map((option) => ({ data: option.value, label: option.label }))} @@ -341,6 +342,7 @@ export function InstalledGamesSection({ isAvailable }: InstalledGamesSectionProp <div key={setting.id}> <PanelSectionRow> <DropdownItem + layout="below" label={setting.label} description={setting.description} rgOptions={[ @@ -435,6 +437,7 @@ export function InstalledGamesSection({ isAvailable }: InstalledGamesSectionProp <PanelSectionRow> <DropdownItem + layout="below" label="Target game" rgOptions={games.map((game) => ({ data: String(game.appid), @@ -520,6 +523,7 @@ export function InstalledGamesSection({ isAvailable }: InstalledGamesSectionProp <PanelSectionRow> <DropdownItem + layout="below" label="Proxy DLL" description="Persisted per game and used by the wrapper on next launch. Changes autosave immediately." rgOptions={["winmm", "dxgi", "version", "dbghelp", "winhttp", "wininet", "d3d12"].map((proxy) => ({ @@ -535,6 +539,7 @@ export function InstalledGamesSection({ isAvailable }: InstalledGamesSectionProp <PanelSectionRow> <DropdownItem + layout="below" label="Config section" description="Browse and edit every setting parsed from the bundled OptiScaler.ini template." rgOptions={sectionOptions} |
