Skip to content

Commit

Permalink
Track tray icon by GUID
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderfrangos committed May 2, 2021
1 parent f2a3f90 commit e5712be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -1826,7 +1826,7 @@ app.on('quit', () => {
function createTray() {
if (tray != null) return false;

tray = new Tray(getTrayIconPath())
tray = new Tray(getTrayIconPath(), "8dcc89ce-312e-45bf-9b4d-125adc526cc3")
const contextMenu = Menu.buildFromTemplate([
{ label: T.t("GENERIC_SETTINGS"), type: 'normal', click: createSettings },
{ label: T.t("GENERIC_QUIT"), type: 'normal', click: quitApp }
Expand Down

0 comments on commit e5712be

Please sign in to comment.