mirror of
https://github.com/element-hq/element-desktop
synced 2025-04-04 05:03:57 +02:00
Don't double up app badge on Windows
This commit is contained in:
parent
dde3bb3caf
commit
344d473e9b
@ -89,7 +89,11 @@ export function create(config: IConfig): void {
|
|||||||
}
|
}
|
||||||
|
|
||||||
trayIcon?.setImage(newFavicon);
|
trayIcon?.setImage(newFavicon);
|
||||||
global.mainWindow?.setIcon(newFavicon);
|
|
||||||
|
// Don't set the main window icon on Windows as we call Navigator::setAppBadge to do it for us
|
||||||
|
if (process.platform !== "win32") {
|
||||||
|
global.mainWindow?.setIcon(newFavicon);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
global.mainWindow?.webContents.on("page-title-updated", function (ev, title) {
|
global.mainWindow?.webContents.on("page-title-updated", function (ev, title) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user