Skip to content

Commit

Permalink
fix(menu): new page struct update in menu list
Browse files Browse the repository at this point in the history
  • Loading branch information
DEgITx committed Jul 8, 2018
1 parent a339d01 commit 3fad6c2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/background/menu/manage_menu_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const manageMenuTemplateFunc = () => ({
},
},
{
label: __("Search"),
label: __("Feed"),
accelerator: "CmdOrCtrl+n",
click: () => {
BrowserWindow.getFocusedWindow().webContents.send('url', '/')
Expand All @@ -26,6 +26,13 @@ export const manageMenuTemplateFunc = () => ({
click: () => {
BrowserWindow.getFocusedWindow().webContents.send('url', '/top')
},
},
{
label: __("Activity"),
accelerator: "CmdOrCtrl+m",
click: () => {
BrowserWindow.getFocusedWindow().webContents.send('url', '/activity')
},
}
]
});

0 comments on commit 3fad6c2

Please sign in to comment.