1 parent 8927afc commit 6aae97bCopy full SHA for 6aae97b
1 file changed
electron_app/src/tray.js
@@ -66,4 +66,8 @@ exports.create = function (win, config) {
66
trayIcon.setImage(img);
67
} catch (e) {console.error(e);}
68
});
69
+
70
+ win.webContents.on('page-title-updated', function(ev, title) {
71
+ trayIcon.setToolTip(title);
72
+ });
73
};
0 commit comments