diff --git a/src/window.ts b/src/window.ts index a847bd7..b9cda90 100644 --- a/src/window.ts +++ b/src/window.ts @@ -156,6 +156,8 @@ async function doAfterDefiningTheWindow() { let trayPath = nativeImage.createFromPath(path.join(app.getPath("temp"), "/", "tray.png")); if (process.platform === "darwin" && trayPath.getSize().height > 22) trayPath = trayPath.resize({height: 22}); + if (process.platform === "win32" && trayPath.getSize().height > 22) + trayPath = trayPath.resize({height: 64}); tray.setImage(trayPath); }); }