mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
Prevent incorrect popullating of Unread RSS list
This commit is contained in:
@@ -138,6 +138,11 @@ void FeedListWidget::handleItemPathChanged(RSS::Item *rssItem)
|
||||
void FeedListWidget::handleItemAboutToBeRemoved(RSS::Item *rssItem)
|
||||
{
|
||||
delete m_rssToTreeItemMapping.take(rssItem);
|
||||
|
||||
// RSS Item is still valid in this slot so if it is the last
|
||||
// item we should prevent Unread list populating
|
||||
if (m_rssToTreeItemMapping.size() == 1)
|
||||
setCurrentItem(nullptr);
|
||||
}
|
||||
|
||||
QTreeWidgetItem *FeedListWidget::stickyUnreadItem() const
|
||||
|
||||
Reference in New Issue
Block a user