- Allow to delete rss streams using "Del" key

This commit is contained in:
Christophe Dumez 2007-08-03 15:02:16 +00:00
parent 533aeb3f8b
commit 86d38efcb2
3 changed files with 9 additions and 3 deletions

View file

@ -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) {