Merge branch 'master' into custom-electron-prompt

This commit is contained in:
Araxeus
2021-05-08 00:21:16 +03:00
committed by GitHub
16 changed files with 199 additions and 82 deletions

View File

@ -192,12 +192,13 @@ function setupLocalArrowShortcuts(options) {
}
function callback(event) {
event.preventDefault();
switch (event.code) {
case "ArrowUp":
event.preventDefault();
changeVolume(true, options);
break;
case "ArrowDown":
event.preventDefault();
changeVolume(false, options);
break;
}