mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
- "add new Feed" when clicking on "Unread" item will not add the new feed as a child to "Unread" item
This commit is contained in:
@@ -133,8 +133,12 @@ void RSSImp::on_newFeedButton_clicked() {
|
||||
// Determine parent folder for new feed
|
||||
QTreeWidgetItem *parent_item = 0;
|
||||
QList<QTreeWidgetItem *> selected_items = listStreams->selectedItems();
|
||||
if(!selected_items.empty())
|
||||
if(!selected_items.empty()) {
|
||||
parent_item = selected_items.first();
|
||||
// Consider the case where the user clicked on Unread item
|
||||
if(parent_item == listStreams->getUnreadItem())
|
||||
parent_item = 0;
|
||||
}
|
||||
RssFolder *rss_parent;
|
||||
if(parent_item) {
|
||||
RssFile* tmp = listStreams->getRSSItem(parent_item);
|
||||
|
||||
Reference in New Issue
Block a user