Improve settings texts

This commit is contained in:
Vendicated 2023-04-09 06:05:52 +02:00
parent c29dd6d2d7
commit 5efbbe2106
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905

View file

@ -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 (