From 92a70f086c79ac6a03c988e539c448e264f921f6 Mon Sep 17 00:00:00 2001 From: Gabriel Davila <56521591+mefsaal@users.noreply.github.com> Date: Thu, 19 May 2022 20:52:34 -0300 Subject: [PATCH] Fix Tray icon (#1059) --- src/main/base/app.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/base/app.ts b/src/main/base/app.ts index 2f8100ec..dad4d4a9 100644 --- a/src/main/base/app.ts +++ b/src/main/base/app.ts @@ -298,8 +298,8 @@ export class AppEvents { this.i18n = utils.getLocale(utils.getStoreValue('general.language')) const ciderIcon = nativeImage.createFromPath(path.join(__dirname, `../../resources/icons/icon.png`)).resize({ - width: 20, - height: 20 + width: 24, + height: 24 }) const menu = Menu.buildFromTemplate([ @@ -308,6 +308,7 @@ export class AppEvents { label: app.getName(), enabled: false, icon: ciderIcon, + }, {type: 'separator'},