From f2a2f4a126c5b60a2f8115c850883ccb8d736825 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 20 Oct 2025 14:20:32 -0400 Subject: chore: move fps mul to top --- src/components/ConfigurationSection.tsx | 3 --- src/components/Content.tsx | 21 +++++++++++++++------ 2 files changed, 15 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 632c3a0..eeacf05 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -2,7 +2,6 @@ import { PanelSectionRow, ToggleField, SliderField, ButtonItem } from "@decky/ui import { useState, useEffect } from "react"; import { RiArrowDownSFill, RiArrowUpSFill } from "react-icons/ri"; import { ConfigurationData } from "../config/configSchema"; -import { FpsMultiplierControl } from "./FpsMultiplierControl"; import { FLOW_SCALE, PERFORMANCE_MODE, HDR_MODE, EXPERIMENTAL_PRESENT_MODE, DXVK_FRAME_RATE, DISABLE_STEAMDECK_MODE, @@ -111,8 +110,6 @@ export function ConfigurationSection({ {!configCollapsed && ( <> - - )} - - {/* Clipboard buttons - only show if installed */} + + {/* FPS multiplier controls stay above profile selection when installed */} {isInstalled && ( - <> - - - + )} {/* Profile Management - only show if installed */} @@ -126,6 +127,14 @@ export function Content() { /> )} + {/* Clipboard buttons sit beside usage info for quick access */} + {isInstalled && ( + <> + + + + )} + {/* Usage instructions - always visible for user guidance */} -- cgit v1.2.3