From a341103fd73f7add64a52b912a793f5e0f007f65 Mon Sep 17 00:00:00 2001 From: Robert Stanfield Date: Sat, 6 Aug 2016 00:16:15 -0400 Subject: [PATCH] Fixes #61 Sets the tooltip to display Ghetto Skype instead of electron --- app/tray.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/tray.js b/app/tray.js index c98f043..09f228d 100644 --- a/app/tray.js +++ b/app/tray.js @@ -16,6 +16,7 @@ exports.init = function(window) { trayIcon = new electron.Tray(`${basePath}skype24.png`); trayIcon.on('click', toggleOpen); + trayIcon.setToolTip('Ghetto Skype'); trayIcon.setContextMenu(contextMenu); };