Fix Frameless

This commit is contained in:
Vendicated 2023-01-13 01:50:58 +01:00
parent 075b0e0970
commit 26f2b51eb9
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905

View file

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