mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
Add ability to use 'shift+delete' to delete torrents in WebUI
Closes #13827.
This commit is contained in:
@@ -1225,6 +1225,10 @@ new Keyboard({
|
||||
'delete': function(event) {
|
||||
deleteFN();
|
||||
event.preventDefault();
|
||||
},
|
||||
'shift+delete': (event) => {
|
||||
deleteFN(true);
|
||||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
||||
Reference in New Issue
Block a user