Commit 4d04fd11 authored by Pieterjan Vanhoof's avatar Pieterjan Vanhoof Committed by GitHub

Merge pull request #133 from bokobza/master

OSX fix
parents 62e2f169 cfccb1a1
......@@ -58,6 +58,7 @@ function createWindow() {
// Emitted when the window is going to close.
mainWindow.on('close', function () {
if (process.platform !== 'darwin') {
var http = require('http');
const options = {
hostname: 'localhost',
......@@ -69,6 +70,7 @@ function createWindow() {
const req = http.request(options, (res) => {});
req.write('');
req.end();
}
});
}
......@@ -133,7 +135,7 @@ function createTray() {
let appIcon = null;
var iconPath
if (os.platform == 'win32') {
if (os.platform() === 'win32') {
iconPath = __dirname + '/assets/images/breeze-logo-tray.ico';
} else {
iconPath = __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