This commit is contained in:
DavidXanatos 2023-02-04 14:45:47 +01:00
parent 5cbdf1ef11
commit 133c059701
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ bool CTraceModel::TestHighLight(STreeNode* pNode) const
if (m_HighLightExp.isEmpty())
return false;
for (int i = 0; i < eCount; i++) {
if (NodeData(pNode, Qt::DisplayRole, i).toString().contains(m_HighLightExp))
if (NodeData(pNode, Qt::DisplayRole, i).toString().contains(m_HighLightExp, Qt::CaseInsensitive))
return true;
}
return false;