From 3ce6ba534900e68c815b4012a456842d3003c6da Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Sat, 19 Jul 2025 14:21:21 -0400 Subject: update icons, rm immediate mode in present options --- src/components/ClipboardButton.tsx | 4 ++-- src/components/ConfigurationSection.tsx | 3 +-- src/components/WikiButton.tsx | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/components/ClipboardButton.tsx b/src/components/ClipboardButton.tsx index 3760e81..7fd0a9b 100644 --- a/src/components/ClipboardButton.tsx +++ b/src/components/ClipboardButton.tsx @@ -1,5 +1,5 @@ import { PanelSectionRow, ButtonItem } from "@decky/ui"; -import { FaExternalLinkAlt } from "react-icons/fa"; +import { FaClipboard } from "react-icons/fa"; export function ClipboardButton() { const handleClipboardClick = () => { @@ -13,7 +13,7 @@ export function ClipboardButton() { onClick={handleClipboardClick} >
- +
Launch Option Clipboard
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 5afd8f6..59ad880 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -104,8 +104,7 @@ export function ConfigurationSection({ onChange={(value) => onConfigChange('experimental_present_mode', value.data)} rgOptions={[ { data: "fifo", label: "FIFO (VSync) - Default" }, - { data: "mailbox", label: "Mailbox" }, - { data: "immediate", label: "Immediate" } + { data: "mailbox", label: "Mailbox" } ]} /> diff --git a/src/components/WikiButton.tsx b/src/components/WikiButton.tsx index 80ff1d9..065fb8e 100644 --- a/src/components/WikiButton.tsx +++ b/src/components/WikiButton.tsx @@ -1,5 +1,5 @@ import { PanelSectionRow, ButtonItem } from "@decky/ui"; -import { FaExternalLinkAlt } from "react-icons/fa"; +import { FaBook } from "react-icons/fa"; export function WikiButton() { const handleWikiClick = () => { @@ -13,7 +13,7 @@ export function WikiButton() { onClick={handleWikiClick} >
- +
LSFG-VK Wiki
-- cgit v1.2.3