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

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

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);
});
}
/**