Remove trailing colons from default menu roles

`hideothers` and `unhide` had trailing colons which prevented them from being enabled / working in the default app. #3543
This commit is contained in:
Ben Gotow 2015-11-22 09:08:35 -08:00
parent 29052b0498
commit fbdef9e112

View file

@ -189,11 +189,11 @@ app.once('ready', function() {
{
label: 'Hide Others',
accelerator: 'Command+Shift+H',
role: 'hideothers:'
role: 'hideothers'
},
{
label: 'Show All',
role: 'unhide:'
role: 'unhide'
},
{
type: 'separator'