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:
parent
29052b0498
commit
fbdef9e112
1 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue