Fix Frameless

main
Vendicated 2 years ago
parent 075b0e0970
commit 26f2b51eb9
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905

@ -76,7 +76,9 @@ if (!process.argv.includes("--vanilla")) {
const original = options.webPreferences.preload; const original = options.webPreferences.preload;
options.webPreferences.preload = join(__dirname, "preload.js"); options.webPreferences.preload = join(__dirname, "preload.js");
options.webPreferences.sandbox = false; options.webPreferences.sandbox = false;
options.frame = !settings.frameless; if (settings.frameless) {
options.frame = false;
}
process.env.DISCORD_PRELOAD = original; process.env.DISCORD_PRELOAD = original;

Loading…
Cancel
Save