We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f0ebd5 commit 575a158Copy full SHA for 575a158
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "Soulmate",
3
- "version": "1.0.8",
+ "version": "1.0.9",
4
"main": "src/electron.js",
5
"license": "MIT",
6
"dependencies": {
src/electron.js
@@ -23,6 +23,7 @@ function createWindow() {
23
mainWindow = new BrowserWindow({
24
width: 1400,
25
height: 800,
26
+ show: false,
27
webPreferences: {
28
enableRemoteModule: true,
29
nodeIntegration: true,
@@ -47,6 +48,10 @@ function createWindow() {
47
48
}
49
});
50
51
+
52
+ mainWindow.once("ready-to-show", () => {
53
+ mainWindow.show();
54
+ });
55
56
57
app.on("ready", createWindow);
0 commit comments