mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-31 03:50:20 -07:00
Don't remove read articles from Unread list
Revert back old behavior (incorrect but, perhaps, more user-friendly), when Unread list populates with "unread" articles only but then it can contain "read" articles if they become "read" when Unread list is shown.
This commit is contained in:
parent
2d3914c077
commit
76e3383650
1 changed files with 4 additions and 9 deletions
|
@ -38,7 +38,7 @@ ArticleListWidget::ArticleListWidget(QWidget *parent)
|
|||
{
|
||||
setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||
|
||||
|
||||
checkInvariant();
|
||||
}
|
||||
|
||||
|
@ -93,14 +93,9 @@ void ArticleListWidget::handleArticleAdded(RSS::Article *rssArticle)
|
|||
|
||||
void ArticleListWidget::handleArticleRead(RSS::Article *rssArticle)
|
||||
{
|
||||
if (m_unreadOnly) {
|
||||
delete m_rssArticleToListItemMapping.take(rssArticle);
|
||||
}
|
||||
else {
|
||||
auto item = mapRSSArticle(rssArticle);
|
||||
item->setData(Qt::ForegroundRole, QColor("grey"));
|
||||
item->setData(Qt::DecorationRole, QIcon(":/icons/sphere.png"));
|
||||
}
|
||||
auto item = mapRSSArticle(rssArticle);
|
||||
item->setData(Qt::ForegroundRole, QColor("grey"));
|
||||
item->setData(Qt::DecorationRole, QIcon(":/icons/sphere.png"));
|
||||
|
||||
checkInvariant();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue