From d0f0e575eb5cc9d67b7b517bfe90e7bcc097c8e1 Mon Sep 17 00:00:00 2001 From: Jack Mallers Date: Wed, 16 Aug 2017 16:05:38 -0500 Subject: [PATCH] fix(title): set html title to Zap --- app/app.html | 2 +- app/main.dev.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/app.html b/app/app.html index 4d3e1389..c309ddf0 100644 --- a/app/app.html +++ b/app/app.html @@ -2,7 +2,7 @@ - Hello Electron React! + Zap diff --git a/app/main.dev.js b/app/main.dev.js index 0d9684ac..c5f4c8df 100644 --- a/app/main.dev.js +++ b/app/main.dev.js @@ -78,6 +78,7 @@ app.on('ready', async () => { if (!mainWindow) { throw new Error('"mainWindow" is not defined'); } + mainWindow.show(); mainWindow.focus(); });