📝 Add changelog entry for taskbar flashing on linux

This commit is contained in:
Jonas Schwabe 2016-07-23 14:08:18 +02:00
parent 028d0ac7f8
commit 6f5c907ca6
2 changed files with 6 additions and 1 deletions

View file

@ -4,6 +4,11 @@
### Improvements
#### Linux
- Added an option to make the taskbar icon flash on new messages
### Improvements
### Bug Fixes

View file

@ -261,7 +261,7 @@ app.on('ready', function() {
mainWindow.focus();
});
ipcMain.on('notified', function(event, arg) {
if (process.platform === 'win32' || process.platform == 'linux') {
if (process.platform === 'win32' || process.platform === 'linux') {
if (config.notifications.flashWindow === 2) {
mainWindow.flashFrame(true);
}