From 553c3ef0ee78625eae55e9842cd18e4ccdbf080f Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 27 Oct 2019 12:38:12 -0700 Subject: [PATCH] Fix missing about menu item (Windows) --- app/appMenu.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/appMenu.js b/app/appMenu.js index b1ce12a..f9cbdbb 100644 --- a/app/appMenu.js +++ b/app/appMenu.js @@ -105,6 +105,15 @@ export const createMenu = () => { { role: 'quit' } ] }) + } else { + template.unshift({ + label: 'Tad', + submenu: [ + aboutTadMenuItem(), + separatorMenuItem, + { rold: 'quit' } + ] + }) } let oldMenu = appMenu