Skip to content

Commit

Permalink
Remove toggle full screen shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
edanchenkov committed May 14, 2017
1 parent d68f4ba commit 4583f1e
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,6 @@ var defaultMenu = [
focusedWindow.reload();
}
},
{
label : 'Toggle Full Screen',
accelerator : (function () {
if (process.platform === 'darwin')
return 'Ctrl+Command+F';
else
return 'F11';
})(),
click : function (item, focusedWindow) {
if (focusedWindow)
focusedWindow.setFullScreen(!focusedWindow.isFullScreen());
}
},
{
label : 'Toggle Developer Tools',
accelerator : (function () {
Expand Down

0 comments on commit 4583f1e

Please sign in to comment.