Show custom titlebar on Win and Linux

This commit is contained in:
Joel Collins 2019-06-03 10:24:15 +01:00
parent 3826bdb511
commit 1baf040b89

View file

@ -1,7 +1,10 @@
//import { Titlebar, Color } from 'custom-electron-titlebar'
import { Titlebar, Color } from 'custom-electron-titlebar'
//new Titlebar({
// backgroundColor: Color.fromHex('#ffffff')
//});
// Only show custom menubar for Windows or Linux
if ((process.platform !== 'darwin')) {
new Titlebar({
backgroundColor: Color.fromHex('#c5247f')
});
}
console.log("Loaded main.app.js for electron-renderer functionality")