Browse Source

change tray to use png icon on linux devices

master
gelaechter 3 years ago
committed by Jeff
parent
commit
0e8eff7e42
  1. 2
      src/main.dev.js

2
src/main.dev.js

@ -508,7 +508,7 @@ const createTray = () => {
return;
}
tray = new Tray(getAssetPath('icon.ico'));
tray = isLinux ? new Tray(getAssetPath('icon.png')) : new Tray(getAssetPath('icon.ico'));
const contextMenu = Menu.buildFromTemplate([
{
label: 'Open main window',

Loading…
Cancel
Save