Browse Source

Fixed tray icon path

pull/3/head
Ramiro Saenz 9 years ago
parent
commit
c3cd18e014
  1. 2
      electron/tray.js

2
electron/tray.js

@ -53,7 +53,7 @@ exports.create = win => {
} }
]); ]);
tray = new Tray('../resources/IconTray.png'); tray = new Tray(iconPath);
tray.setToolTip('Rambox'); tray.setToolTip('Rambox');
tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
tray.on('click', function() { tray.on('click', function() {

Loading…
Cancel
Save