Fix Frameless
This commit is contained in:
parent
075b0e0970
commit
26f2b51eb9
1 changed files with 3 additions and 1 deletions
|
@ -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…
Reference in a new issue