Skip to content
This repository has been archived by the owner on May 5, 2021. It is now read-only.

Commit

Permalink
Fix tray icon bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanomotion committed Jan 21, 2019
1 parent 1bd4058 commit efaffa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ app.on('ready', () => {
}
});

tray = new Tray('tray.png');
tray = new Tray(__dirname + '/tray.png');
tray.setToolTip('Twitch overlay activated. Press Ctrl + ` to show.');
const trayContextMenu = Menu.buildFromTemplate([
{label: `TwitchOverlay v${app.getVersion()}`, enabled: false},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TwitchOverlay",
"version": "0.3.0",
"version": "0.3.1",
"main": "./index.js",
"devDependencies": {
"electron": "^4.0.1",
Expand Down

0 comments on commit efaffa5

Please sign in to comment.