From 45a4c024dfc7d06fabb8b74813cf8ee42519c9f3 Mon Sep 17 00:00:00 2001 From: Aitchessbee Date: Fri, 29 Mar 2024 21:04:03 +0530 Subject: [PATCH] Tray: Fix for unread message tray icon for linux - fixes #1364 --- app/renderer/js/tray.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/renderer/js/tray.ts b/app/renderer/js/tray.ts index 289090aa4..5e209ef7e 100644 --- a/app/renderer/js/tray.ts +++ b/app/renderer/js/tray.ts @@ -52,7 +52,7 @@ const trayIconSize = (): number => { // Default config for Icon we might make it OS specific if needed like the size const config = { - pixelRatio: window.devicePixelRatio, + pixelRatio: 1, unreadCount: 0, showUnreadCount: true, unreadColor: "#000000",