Commit 06abff56 authored by dev0tion's avatar dev0tion

Use blue logo

parent d4a49e4f
...@@ -33,9 +33,9 @@ let mainWindow = null; ...@@ -33,9 +33,9 @@ let mainWindow = null;
function createWindow() { function createWindow() {
let applicationIcon let applicationIcon
if (serve) { if (serve) {
applicationIcon = nativeImage.createFromPath("./src/assets/images/breeze-logo.png") applicationIcon = nativeImage.createFromPath("./src/assets/images/breeze-logo-tray.png")
} else { } else {
applicationIcon = nativeImage.createFromPath(path.join(__dirname + '/assets/images/breeze-logo.png')) applicationIcon = nativeImage.createFromPath(path.join(__dirname + '/assets/images/breeze-logo-tray.png'))
} }
// Create the browser window. // Create the browser window.
...@@ -169,7 +169,7 @@ function startBitcoinApi() { ...@@ -169,7 +169,7 @@ function startBitcoinApi() {
detached: true detached: true
}); });
} }
bitcoinProcess.stdout.on('data', (data) => { bitcoinProcess.stdout.on('data', (data) => {
writeLog(`Bitcoin: ${data}`); writeLog(`Bitcoin: ${data}`);
...@@ -195,7 +195,7 @@ function startStratisApi() { ...@@ -195,7 +195,7 @@ function startStratisApi() {
detached: true detached: true
}); });
} }
stratisProcess.stdout.on('data', (data) => { stratisProcess.stdout.on('data', (data) => {
writeLog(`Stratis: ${data}`); writeLog(`Stratis: ${data}`);
......
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