From bfa20f2634a0f3f73a03135f9ddb9d0dfe566e88 Mon Sep 17 00:00:00 2001 From: Đỗ Văn Hoài Tuân Date: Sat, 8 Apr 2023 18:41:55 -0700 Subject: feat(setting): Disable minimum window size #834 (#848) --- src/main/patcher.ts | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'src/main/patcher.ts') 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 { -- cgit