mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 08:43:08 -07:00
- Allow to delete rss streams using "Del" key
This commit is contained in:
parent
533aeb3f8b
commit
86d38efcb2
3 changed files with 9 additions and 3 deletions
|
@ -1048,7 +1048,11 @@ void GUI::on_actionDelete_Permanently_triggered(){
|
|||
|
||||
// delete selected items in the list
|
||||
void GUI::on_actionDelete_triggered(){
|
||||
if(tabs->currentIndex() > 1) return;
|
||||
if(tabs->currentIndex() == 2) return; // No deletion in search tab
|
||||
if(tabs->currentIndex() == 3){
|
||||
rssWidget->on_delStream_button_clicked();
|
||||
return;
|
||||
}
|
||||
QModelIndexList selectedIndexes;
|
||||
bool inDownloadList;
|
||||
if(tabs->currentIndex() == 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue