summaryrefslogtreecommitdiffstats
path: root/seriestreewidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'seriestreewidget.cpp')
-rw-r--r--seriestreewidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/seriestreewidget.cpp b/seriestreewidget.cpp
index ca18672..50f06c0 100644
--- a/seriestreewidget.cpp
+++ b/seriestreewidget.cpp
@@ -518,7 +518,7 @@ bool SeriesTreeSortModel::filterAcceptsRow(int source_row, const QModelIndex &so
child = curIdx.child(++row, 0);
}
}else if(type == SeriesTreeModel::Part){
- bool accept = ((curIdx.data(SeriesTreeModel::IsLocalRole).toBool() == filterLocal) && (curIdx.data(SeriesTreeModel::FavoriteRole).toBool() == false));
+ bool accept = ((curIdx.data(SeriesTreeModel::IsLocalRole).toBool() == filterLocal)); // && (curIdx.data(SeriesTreeModel::FavoriteRole).toBool() == false));
if(accept){
return (filterRe.indexIn(name) != -1);
}