aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-12-01 03:38:17 +0100
committerVendicated <vendicated@riseup.net>2022-12-01 03:38:17 +0100
commit734054ff68a103482bff903bb384bc24576c5499 (patch)
treeed2d9b1c23d027c00692dae01c8ffffa4aada6ad /src/components
parentf94cbfb2f498a121a5dbb3a22acdb74b446c952b (diff)
downloadVencord-734054ff68a103482bff903bb384bc24576c5499.tar.gz
Vencord-734054ff68a103482bff903bb384bc24576c5499.tar.bz2
Vencord-734054ff68a103482bff903bb384bc24576c5499.zip
feat(Settings): Allow moving Vencord section to different places
Diffstat (limited to 'src/components')
-rw-r--r--src/components/VencordSettings/VencordTab.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/VencordSettings/VencordTab.tsx b/src/components/VencordSettings/VencordTab.tsx
index 89bbefd..746fcf0 100644
--- a/src/components/VencordSettings/VencordTab.tsx
+++ b/src/components/VencordSettings/VencordTab.tsx
@@ -22,7 +22,7 @@ import DonateButton from "@components/DonateButton";
import ErrorBoundary from "@components/ErrorBoundary";
import IpcEvents from "@utils/IpcEvents";
import { useAwaiter } from "@utils/misc";
-import { Button, Card, Forms, React, Switch } from "@webpack/common";
+import { Button, Card, Forms, Margins, React, Switch } from "@webpack/common";
const st = (style: string) => `vcSettings${style}`;
@@ -81,6 +81,9 @@ function VencordSettings() {
<Forms.FormDivider />
<Forms.FormSection title="Settings">
+ <Forms.FormText className={Margins.marginBottom20}>
+ Hint: You can change the position of this settings section in the settings of the "Settings" plugin!
+ </Forms.FormText>
<Switch
value={settings.useQuickCss}
onChange={(v: boolean) => settings.useQuickCss = v}