Skip to content

Commit

Permalink
feat(manual): usage manual (help) in menu
Browse files Browse the repository at this point in the history
  • Loading branch information
DEgITx committed Mar 10, 2018
1 parent b7d1011 commit 7420544
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/background/menu/about_menu_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const aboutMenuTemplate = {
},
{
label: "Donate",
accelerator: "CmdOrCtrl+]",
accelerator: "CmdOrCtrl+*",
click: () => {
const win = new BrowserWindow({
parent: BrowserWindow.getFocusedWindow(),
Expand All @@ -56,6 +56,13 @@ export const aboutMenuTemplate = {
slashes: true
}))
},
},
{
label: "Help",
accelerator: "CmdOrCtrl+?",
click: () => {
shell.openExternal('https://github.com/DEgITx/rats-search/blob/master/docs/MANUAL.md')
},
}
]
};

0 comments on commit 7420544

Please sign in to comment.