diff --git a/CHANGELOG.md b/CHANGELOG.md index dbf22b97..39a0cef6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ Release date: TBD - Reload only the selected tab and keep its URL on "Reload" and "Clear Cache and Reload". - Disabled `eval()` function for security improvements. - Invalidate cache before load, to make server upgrades easy +- Removed misleading shortcuts from tray menu, as they didn't work - Ctrl/Command+F puts cursor in search box to search in current channel. #### Windows diff --git a/src/main/menus/tray.js b/src/main/menus/tray.js index 4e0b5fa3..79c8fff9 100644 --- a/src/main/menus/tray.js +++ b/src/main/menus/tray.js @@ -11,7 +11,6 @@ function createTemplate(mainWindow, config) { ...config.teams.slice(0, 9).map((team, i) => { return { label: team.name, - accelerator: `CmdOrCtrl+${i + 1}`, click: (item, focusedWindow) => { mainWindow.show(); // for OS X mainWindow.webContents.send('switch-tab', i);