Remove trailing colons from default menu roles
authorBen Gotow <bengotow@gmail.com>
Sun, 22 Nov 2015 17:08:35 +0000 (09:08 -0800)
committerBen Gotow <bengotow@gmail.com>
Sun, 22 Nov 2015 17:08:35 +0000 (09:08 -0800)
`hideothers` and `unhide` had trailing colons which prevented them from being enabled / working in the default app. #3543

atom/browser/default_app/main.js

index 3916cfb..01a2a0d 100644 (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'