Fix download shortcut

This commit is contained in:
2022-01-05 23:33:42 +01:00
parent 3d0c6dfacd
commit 4a44133112
2 changed files with 4 additions and 4 deletions

View File

@@ -289,9 +289,9 @@ const keyboard_event = evt => {
break
case 83:
if (evt.shiftKey) {
download_list() // SHIFT + S downloads all files in list
downloader.download_list() // SHIFT + S downloads all files in list
} else {
download() // S to download the current file
downloader.download_file() // S to download the current file
}
break
case 82: // R to toggle list shuffle