aboutsummaryrefslogtreecommitdiff
path: root/src/main/patcher.ts
diff options
context:
space:
mode:
authorĐỗ Văn Hoài Tuân <htuan03@gmail.com>2023-04-08 18:41:55 -0700
committerGitHub <noreply@github.com>2023-04-09 03:41:55 +0200
commitbfa20f2634a0f3f73a03135f9ddb9d0dfe566e88 (patch)
tree65c0a531c6b46abcd5f7e3cfc42491fc70c3355c /src/main/patcher.ts
parent840da146b968b4db7616f5528f1a2b0d24e9517a (diff)
downloadVencord-bfa20f2634a0f3f73a03135f9ddb9d0dfe566e88.tar.gz
Vencord-bfa20f2634a0f3f73a03135f9ddb9d0dfe566e88.tar.bz2
Vencord-bfa20f2634a0f3f73a03135f9ddb9d0dfe566e88.zip
feat(setting): Disable minimum window size #834 (#848)
Diffstat (limited to 'src/main/patcher.ts')
-rw-r--r--src/main/patcher.ts15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/main/patcher.ts b/src/main/patcher.ts
index c45a299..f92a64d 100644
--- a/src/main/patcher.ts
+++ b/src/main/patcher.ts
@@ -106,10 +106,17 @@ if (!IS_VANILLA) {
BrowserWindow
};
- // Patch appSettings to force enable devtools
- onceDefined(global, "appSettings", s =>
- s.set("DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING", true)
- );
+ // Patch appSettings to force enable devtools and optionally disable min size
+ onceDefined(global, "appSettings", s => {
+ s.set("DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING", true);
+ if (settings.disableMinSize) {
+ s.set("MIN_WIDTH", 0);
+ s.set("MIN_HEIGHT", 0);
+ } else {
+ s.set("MIN_WIDTH", 940);
+ s.set("MIN_HEIGHT", 500);
+ }
+ });
process.env.DATA_DIR = join(app.getPath("userData"), "..", "Vencord");
} else {