From 32046c0d1972f95f3fbb7ddba07de0c5487ac32c Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Mon, 16 Oct 2023 12:57:27 -0700 Subject: [PATCH] Fix system tray icon pixelated in Ubuntu Linux Co-authored-by: ayumi-signal <143036029+ayumi-signal@users.noreply.github.com> --- app/SystemTrayService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/SystemTrayService.ts b/app/SystemTrayService.ts index 161cd619d..74f4dda9e 100644 --- a/app/SystemTrayService.ts +++ b/app/SystemTrayService.ts @@ -247,6 +247,7 @@ function getIcon(unreadCount: number) { case 'darwin': iconSize = '16'; break; + case 'linux': case 'win32': iconSize = '32'; break;