disable counts for regex queries, it is performance killer sadly

This commit is contained in:
Martin Rotter 2023-09-06 10:29:45 +02:00
parent a4f3786e01
commit c38595ea02
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ class RSSGUARD_DLLSPEC Search : public RootItem {
private:
QString m_filter;
QColor m_color;
int m_totalCount{};
int m_unreadCount{};
int m_totalCount = -1;
int m_unreadCount = -1;
};
#endif // SEARCH_H