update review changes
This commit is contained in:
parent
e70d8f2348
commit
6db06a0d19
1 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,7 @@
|
||||||
import { app, Menu, shell } from 'electron';
|
import { app, Menu, shell } from 'electron';
|
||||||
|
|
||||||
export default () => {
|
export default () => {
|
||||||
|
const newLocal = 'quit';
|
||||||
const template = [
|
const template = [
|
||||||
{
|
{
|
||||||
label: 'Edit',
|
label: 'Edit',
|
||||||
|
@ -27,7 +28,11 @@ export default () => {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
role: 'window',
|
role: 'window',
|
||||||
submenu: [{ role: 'minimize' }, { role: 'close' }],
|
submenu: [
|
||||||
|
{ role: 'minimize' },
|
||||||
|
{ role: 'close' },
|
||||||
|
{ role: 'quit', accelerator: 'CmdOrCtrl+Q' },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
role: 'help',
|
role: 'help',
|
||||||
|
@ -42,11 +47,6 @@ export default () => {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: 'Close',
|
|
||||||
accelerator: 'CmdOrCtrl+Q',
|
|
||||||
role: 'quit',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: 'Frequently Asked Questions',
|
label: 'Frequently Asked Questions',
|
||||||
click: () => {
|
click: () => {
|
||||||
|
|
Loading…
Reference in a new issue