Show "important" node even when "show unread items only" is selected and it has no unread messages.

This commit is contained in:
Martin Rotter 2020-06-15 11:02:57 +02:00
parent 037e3d3f96
commit be027aaa95

View File

@ -218,8 +218,8 @@ bool FeedsProxyModel::filterAcceptsRowInternal(int source_row, const QModelIndex
const RootItem* item = m_sourceModel->itemForIndex(idx);
if (item->kind() == RootItemKind::Bin || item->kind() == RootItemKind::ServiceRoot) {
// Recycle bin is always displayed.
if (item->kind() != RootItemKind::Category && item->kind() != RootItemKind::Feed) {
// Some items are always visible.
return true;
}
else if (item->isParentOf(m_selectedItem) /* || item->isChildOf(m_selectedItem)*/ || m_selectedItem == item) {