Hide category labels when searching in Viewer list (#3719)

This fixed a bug introduced in #3683

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
badoge
2022-05-28 15:11:51 +04:00
committed by GitHub
parent 3e1e30e4c2
commit 135f914b38
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1037,7 +1037,7 @@ void Split::showViewerList()
resultList->clear();
for (auto &item : results)
{
if (!labels.contains(item->text()))
if (!item->text().contains("("))
{
resultList->addItem(formatListItemText(item->text()));
}