From 5efbbe2106eacd9daf60009c08c27fff56ca8553 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sun, 9 Apr 2023 06:05:52 +0200 Subject: [PATCH] Improve settings texts --- src/renderer/components/Settings.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/renderer/components/Settings.tsx b/src/renderer/components/Settings.tsx index 522527b..c545a97 100644 --- a/src/renderer/components/Settings.tsx +++ b/src/renderer/components/Settings.tsx @@ -10,9 +10,9 @@ export default function SettingsUi() { const { Forms: { FormSection, FormText, FormDivider, FormSwitch, FormTitle }, Text, Select, Button } = Common; const switches: [keyof typeof Settings, string, string, boolean?][] = [ - ["minimizeToTray", "Minimize to tray", "Hitting X will make Discord minimize to the tray instead of closing", true], - ["openLinksWithElectron", "Open Links in app", "Opens links in a new window instead of your WebBrowser"], - ["disableMinSize", "Disable minimum window size", "Allows you to resize the window smaller than the default size"], + ["minimizeToTray", "Minimize to tray", "Hitting X will make Vencord Desktop minimize to the tray instead of closing", true], + ["disableMinSize", "Disable minimum window size", "Allows you to make the window as small as your heart desires"], + ["openLinksWithElectron", "Open Links in app (experimental)", "Opens links in a new Vencord Desktop window instead of your web browser"], ]; return (