diff --git a/receivers/electron/src/Main.ts b/receivers/electron/src/Main.ts index b658917..ae38240 100644 --- a/receivers/electron/src/Main.ts +++ b/receivers/electron/src/Main.ts @@ -110,7 +110,12 @@ export default class Main { ]) tray.setContextMenu(contextMenu); - tray.on('click', () => { Main.toggleMainWindow(); } ); + + // Left-click opens up tray menu, unlike in Windows/Linux + if (process.platform !== 'darwin') { + tray.on('click', () => { Main.toggleMainWindow(); } ); + } + this.tray = tray; }