Added flashing the taskbar icon #167

on windows, taskbar icon will flash on incoming messages
This commit is contained in:
akashnimare
2017-07-21 05:06:20 +05:30
parent 505fea0e91
commit 9e667e3cb0

View File

@@ -218,6 +218,11 @@ app.on('ready', () => {
if (process.platform === 'darwin') {
app.setBadgeCount(messageCount);
}
if (process.platform === 'win32') {
if (!mainWindow.isFocused()) {
mainWindow.flashFrame(true);
}
}
page.send('tray', messageCount);
});