From b7e4e9e075ddb1619914b4a86f213d3ff98ee136 Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Thu, 3 Jun 2021 23:07:19 -0500 Subject: [PATCH] Follow HIG: use ellipsis for Preferences menu item, add app name to About menu item Signed-off-by: Aaron Raimist --- src/vectormenu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vectormenu.js b/src/vectormenu.js index f78635c..d17a993 100644 --- a/src/vectormenu.js +++ b/src/vectormenu.js @@ -132,11 +132,11 @@ function buildMenuTemplate() { submenu: [ { role: 'about', - label: _t('About'), + label: _t('About') + ' ' + app.name, }, { type: 'separator' }, { - label: _t('Preferences'), + label: _t('Preferences') + '…', accelerator: 'Command+,', // Mac-only accelerator click() { global.mainWindow.webContents.send('preferences'); }, },