Resolved issue #1438

This commit is contained in:
Core 2022-09-15 19:57:43 +01:00
parent 0aab392541
commit 56ea833595
No known key found for this signature in database
GPG key ID: 2AB8327FBA02D1C0

View file

@ -49,7 +49,9 @@ app.on("ready", () => {
win.on("ready-to-show", () => {
console.debug("[Cider] Window is Ready.");
CiderPlug.callPlugins("onReady", win);
win.show();
if (!app.commandLine.hasSwitch("hidden")) {
win.show();
}
});
});
});