summaryrefslogtreecommitdiff
path: root/examples/triage
diff options
context:
space:
mode:
authorAlexander Taylor <alex@vector35.com>2025-04-04 17:23:44 -0400
committerAlexander Taylor <alex@vector35.com>2025-04-04 17:45:41 -0400
commitf95f5b2faf7de69befb6f7bef960dd17e6760941 (patch)
tree5c7aaed66a376c3b4098bbd8a612dbb26540be65 /examples/triage
parent4969468ecb7bfbe12b8e862e4a89010cf37be8fb (diff)
Also include library in triage imports filter.
Closes #6563.
Diffstat (limited to 'examples/triage')
-rw-r--r--examples/triage/imports.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/triage/imports.cpp b/examples/triage/imports.cpp
index c53e4004..1cc066de 100644
--- a/examples/triage/imports.cpp
+++ b/examples/triage/imports.cpp
@@ -214,6 +214,8 @@ void GenericImportsModel::setFilter(const std::string& filterText)
m_entries.push_back(entry);
else if (FilteredView::match(std::to_string(entry->GetOrdinal()), filterText))
m_entries.push_back(entry);
+ else if (FilteredView::match(getLibrarySource(entry).toStdString(), filterText))
+ m_entries.push_back(entry);
}
performSort(m_sortCol, m_sortOrder);
endResetModel();