diff options
| -rw-r--r-- | app/main.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/main.js b/app/main.js index e8d4dbdc46..4a25a4d8fc 100644 --- a/app/main.js +++ b/app/main.js @@ -480,6 +480,9 @@ const appDelegate = { _createTray: (window: BrowserWindow): Tray => { const tray = new Tray(nativeImage.createEmpty()); + + // configure tray icon + tray.setToolTip('Mullvad VPN'); tray.on('click', () => appDelegate._toggleWindow(window, tray)); // add IPC handler to change tray icon from renderer |
