diff options
| author | Josh Ferrell <josh@vector35.com> | 2026-01-26 14:23:12 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2026-02-06 17:53:45 -0500 |
| commit | 70bbb18a9444824a8ec2b9a7ff57fc848e017b6e (patch) | |
| tree | fe87c0976b75a7557986d1ac6bcc2409a839624c /plugins/warp/ui/matches.cpp | |
| parent | 9b7604d13e8bd98c6998facb9326926ed96281b5 (diff) | |
Add regex and case sensitivity options to FilterEdit
Diffstat (limited to 'plugins/warp/ui/matches.cpp')
| -rw-r--r-- | plugins/warp/ui/matches.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/warp/ui/matches.cpp b/plugins/warp/ui/matches.cpp index 4b8f0495..289c1102 100644 --- a/plugins/warp/ui/matches.cpp +++ b/plugins/warp/ui/matches.cpp @@ -78,7 +78,7 @@ WarpCurrentFunctionWidget::WarpCurrentFunctionWidget() "Search for Source", [this](WarpFunctionItem* item, std::optional<uint64_t>) { // Apply the source as the filter. if (const auto source = item->GetSource(); source) - m_tableWidget->setFilter(source->ToString()); + m_tableWidget->setFilter(source->ToString(), NoFilterOption); }); connect(m_tableWidget->GetTableView(), &QTableView::clicked, this, [this](const QModelIndex& index) { |
