mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 15:56:17 -07:00
Add ability to use 'shift+delete' to delete torrents in WebUI
Closes #13827.
This commit is contained in:
parent
9c938b91b7
commit
d46343fb9c
3 changed files with 9 additions and 2 deletions
|
@ -1225,6 +1225,10 @@ new Keyboard({
|
|||
'delete': function(event) {
|
||||
deleteFN();
|
||||
event.preventDefault();
|
||||
},
|
||||
'shift+delete': (event) => {
|
||||
deleteFN(true);
|
||||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue