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/Content.tsx | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 71329ad..24dcb5f 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -10,6 +10,7 @@ import { ProfileManagement } from "./ProfileManagement"; import { UsageInstructions } from "./UsageInstructions"; import { SmartClipboardButton } from "./SmartClipboardButton"; import { FgmodClipboardButton } from "./FgmodClipboardButton"; +import { FpsMultiplierControl } from "./FpsMultiplierControl"; import { NerdStuffModal } from "./NerdStuffModal"; import { FlatpaksModal } from "./FlatpaksModal"; import { ConfigurationData } from "../config/configSchema"; @@ -98,13 +99,13 @@ export function Content() { /> )} - - {/* 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