Skip to content

Commit

Permalink
Merge pull request #509 from phidlipus/mac-services
Browse files Browse the repository at this point in the history
Add missing Services menu in application menu on macOS
  • Loading branch information
alexbrazier authored Aug 16, 2017
2 parents 4aa86dc + a7caa8f commit ac38b94
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/scripts/menus/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,19 @@ const appTemplate = [

if (isMac) {
const macAppExtraTemplate = [
{
label: 'Services',
role: 'services',
submenu: [],
position: 'after=about-sep'
},
{
type: 'separator'
},
{
label: 'Hide ' + APP_NAME,
accelerator: 'Command+H',
role: 'hide',
position: 'after=about-sep'
role: 'hide'
},
{
label: 'Hide Others',
Expand Down

0 comments on commit ac38b94

Please sign in to comment.