feat(tray): higher DPI icon

This commit is contained in:
Elian Doran
2025-02-01 12:41:43 +02:00
parent e10256e5bd
commit 0f2e50d265
6 changed files with 17 additions and 7 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ function getTrayIconPath() {
const iconSize = getIconSize();
const suffix = isDev ? "-dev" : "";
return path.join(path.dirname(fileURLToPath(import.meta.url)), "../..", "images", "app-icons", "png", `${iconSize}x${iconSize}${suffix}.png`);
return path.join(path.dirname(fileURLToPath(import.meta.url)), "../..", "images", "app-icons", "tray", `icon-color.png`);
}
function getIconPath(name: string) {