diff options
| -rw-r--r-- | src/components/ClipboardButton.tsx | 4 | ||||
| -rw-r--r-- | src/components/ConfigurationSection.tsx | 3 | ||||
| -rw-r--r-- | 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} > <div style={{ display: "flex", alignItems: "center", gap: "8px" }}> - <FaExternalLinkAlt /> + <FaClipboard /> <div>Launch Option Clipboard</div> </div> </ButtonItem> 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" } ]} /> </PanelSectionRow> 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} > <div style={{ display: "flex", alignItems: "center", gap: "8px" }}> - <FaExternalLinkAlt /> + <FaBook /> <div>LSFG-VK Wiki</div> </div> </ButtonItem> |
