added a hotkey on ctrl+0 for settings. fixes #91

This commit is contained in:
Rick van Lieshout 2022-01-23 11:02:28 +01:00
parent 5a65f60cc5
commit 53cecbcd18
2 changed files with 4 additions and 1 deletions

View File

@ -77,7 +77,7 @@ To install and work with the code on this project follow these steps:
- Custom hotkeys ([source](https://defkey.com/tidal-desktop-shortcuts))
- API for status and playback
- Custom [integrations](#integrations)
- [Settings feature](./docs/settings.png) to disable certain functionality. (`ctrl+=`)
- [Settings feature](./docs/settings.png) to disable certain functionality. (`ctrl+=` or `ctrl+0`)
- AlbumArt in integrations ([best-effort](https://github.com/Mastermindzh/tidal-hifi/pull/88#pullrequestreview-840814847))
## Integrations

View File

@ -183,6 +183,9 @@ function addHotKeys() {
hotkeys.add("control+=", function () {
ipcRenderer.send(globalEvents.showSettings);
});
hotkeys.add("control+0", function () {
ipcRenderer.send(globalEvents.showSettings);
});
}
/**