remove wasted space

This commit is contained in:
Dennis Brown 2017-03-29 23:08:12 -05:00
parent a041bb8c1c
commit 0354314fc8
1 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ const OSXtemplate = [
{ label: 'About 6502Desktop', selector: 'orderFrontStandardAboutPanel:' }, { label: 'About 6502Desktop', selector: 'orderFrontStandardAboutPanel:' },
{ label: 'Quit', accelerator: 'Command+Q', click: function () { app.quit(); } } { label: 'Quit', accelerator: 'Command+Q', click: function () { app.quit(); } }
] ]
}, },
{ {
label: 'Edit', label: 'Edit',
submenu: [ submenu: [
@ -22,11 +22,11 @@ const OSXtemplate = [
{ {
label: 'View', label: 'View',
submenu: (process.env.NODE_ENV === 'development') ? [ submenu: (process.env.NODE_ENV === 'development') ? [
{ label: '&Reload', accelerator: 'Ctrl+R', { label: '&Reload', accelerator: 'Ctrl+R',
click() { mainWindow.webContents.reload(); } }, click() { mainWindow.webContents.reload(); } },
{ label: 'Toggle &Full Screen', accelerator: 'F11', { label: 'Toggle &Full Screen', accelerator: 'F11',
click() { mainWindow.setFullScreen(!mainWindow.isFullScreen()); } click() { mainWindow.setFullScreen(!mainWindow.isFullScreen()); }
}, },
{ label: 'Toggle &Developer Tools', accelerator: 'Alt+Ctrl+I', { label: 'Toggle &Developer Tools', accelerator: 'Alt+Ctrl+I',
click() { mainWindow.toggleDevTools(); } } click() { mainWindow.toggleDevTools(); } }
] : [ ] : [