From e08631b2c4f70a9d646975a778ab1f662d03430c Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 11 Apr 2019 16:29:09 -0500 Subject: [PATCH] Fix logo display --- public/electron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/electron.js b/public/electron.js index 379796c..9543644 100644 --- a/public/electron.js +++ b/public/electron.js @@ -160,7 +160,7 @@ function createWindow() { } ]); - const image = nativeImage.createFromPath(path.join(__dirname, (os.platform() === 'darwin') ? '/build/logo_mac.png' : '/build/logo.png')); + const image = nativeImage.createFromPath(path.join(__dirname, (os.platform() === 'darwin') ? '../build/logo_mac.png' : '../build/logo.png')); mainWindowTray = new Tray(image); autoLauncher