Commit 2aa67b86 authored by Pieterjan Vanhoof's avatar Pieterjan Vanhoof Committed by GitHub

Merge pull request #185 from DanGould/master

escape slash in logo.ico windows path
parents ff41a609 4f86caf6
const electron = require('electron');
const electron = require('electron');
// Module to control application life.
const app = electron.app;
......@@ -146,7 +146,7 @@ function createTray() {
var iconPath
if (os.platform() === 'win32') {
if (serve) {
iconPath = '.\src\assets\images\breeze-logo-tray.ico';
iconPath = '.\\src\\assets\\images\\breeze-logo-tray.ico';
} else {
iconPath = path.join(__dirname + '\\assets\\images\\breeze-logo-tray.png');
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment