diff options
author | Đỗ Văn Hoài Tuân <htuan03@gmail.com> | 2023-04-08 18:41:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-09 03:41:55 +0200 |
commit | bfa20f2634a0f3f73a03135f9ddb9d0dfe566e88 (patch) | |
tree | 65c0a531c6b46abcd5f7e3cfc42491fc70c3355c /src/components/VencordSettings | |
parent | 840da146b968b4db7616f5528f1a2b0d24e9517a (diff) | |
download | Vencord-bfa20f2634a0f3f73a03135f9ddb9d0dfe566e88.tar.gz Vencord-bfa20f2634a0f3f73a03135f9ddb9d0dfe566e88.tar.bz2 Vencord-bfa20f2634a0f3f73a03135f9ddb9d0dfe566e88.zip |
feat(setting): Disable minimum window size #834 (#848)
Diffstat (limited to 'src/components/VencordSettings')
-rw-r--r-- | src/components/VencordSettings/VencordTab.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/VencordSettings/VencordTab.tsx b/src/components/VencordSettings/VencordTab.tsx index 3bdd9b7..d5ffa91 100644 --- a/src/components/VencordSettings/VencordTab.tsx +++ b/src/components/VencordSettings/VencordTab.tsx @@ -83,6 +83,11 @@ function VencordSettings() { key: "winCtrlQ", title: "Register Ctrl+Q as shortcut to close Discord (Alternative to Alt+F4)", note: "Requires a full restart" + }, + IS_DISCORD_DESKTOP && { + key: "disableMinSize", + title: "Disable minimum window size", + note: "Requires a full restart" } ]; |