Skip to content

Commit

Permalink
Not allow Alt+Shift to open menu on Cinnamon desktop environment.
Browse files Browse the repository at this point in the history
Close #104
  • Loading branch information
yuya-oc committed Apr 11, 2016
1 parent c9ab2cd commit 914b782
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/menus/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var createTemplate = function(mainWindow) {
}] : [];

template.push({
label: first_menu_name,
label: '&' + first_menu_name,
submenu: [{
label: 'About ' + app_name,
role: 'about',
Expand All @@ -50,7 +50,7 @@ var createTemplate = function(mainWindow) {
}]
});
template.push({
label: 'Edit',
label: '&Edit',
submenu: [{
label: 'Undo',
accelerator: 'CmdOrCtrl+Z',
Expand Down Expand Up @@ -80,7 +80,7 @@ var createTemplate = function(mainWindow) {
}, ]
});
template.push({
label: 'View',
label: '&View',
submenu: [{
label: 'Reload',
accelerator: 'CmdOrCtrl+R',
Expand Down

0 comments on commit 914b782

Please sign in to comment.