macOS fixes.

This commit is contained in:
Stanislav Nikitin 2019-01-20 07:58:52 +05:00
parent 129c7275a7
commit 4a6db42ee3
No known key found for this signature in database
GPG Key ID: 106900B32F8192EE
1 changed files with 5 additions and 3 deletions

View File

@ -58,6 +58,8 @@ function createWindow() {
showHideMainWindow(null, mainWindow, null);
});
} else {
app.dock.setIcon(normalIcon);
}
mainWindow.Notification = function (title, options) {
@ -88,7 +90,7 @@ app.on('activate', function () {
ipc.on("has-unread", function (event, count) {
mainWindow.setIcon(unreadIcon);
if (process.platform == "darwin") {
app.setBadgeCount(count);
app.dock.setIcon(unreadIcon);
} else {
tray.setImage(unreadIcon);
}
@ -97,9 +99,9 @@ ipc.on("has-unread", function (event, count) {
ipc.on("has-no-unread", function (event, count) {
mainWindow.setIcon(normalIcon);
if (process.platform == "darwin") {
app.setBadgeCount(count);
app.dock.setIcon(normalIcon);
} else {
tray.setImage(unreadIcon);
tray.setImage(normalIcon);
}
})