summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx21
1 files changed, 15 insertions, 6 deletions
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 && (
- <>
- <SmartClipboardButton />
- <FgmodClipboardButton />
- </>
+ <FpsMultiplierControl
+ config={config}
+ onConfigChange={handleConfigChange}
+ />
)}
{/* Profile Management - only show if installed */}
@@ -126,6 +127,14 @@ export function Content() {
/>
)}
+ {/* Clipboard buttons sit beside usage info for quick access */}
+ {isInstalled && (
+ <>
+ <SmartClipboardButton />
+ <FgmodClipboardButton />
+ </>
+ )}
+
{/* Usage instructions - always visible for user guidance */}
<UsageInstructions config={config} />