From 26a36af65f340f72e2d485536a0e0bdc11b94336 Mon Sep 17 00:00:00 2001 From: Sampath Kumar Krishnan Date: Sun, 26 Apr 2020 16:13:37 +0530 Subject: Fix system tray icon tooltip text (#648) --- src/lib/Tray.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib') diff --git a/src/lib/Tray.js b/src/lib/Tray.js index 8928c97bc..d6d49b0c8 100644 --- a/src/lib/Tray.js +++ b/src/lib/Tray.js @@ -55,6 +55,8 @@ export default class TrayIcon { this.trayIcon = new Tray(this._getAsset('tray', INDICATOR_TRAY_PLAIN)); + this.trayIcon.setToolTip('Ferdi'); + this.trayMenu = Menu.buildFromTemplate(this.trayMenuTemplate); ipcMain.on('initialAppSettings', (event, appSettings) => { -- cgit v1.2.3-54-g00ecf