From 70bbb18a9444824a8ec2b9a7ff57fc848e017b6e Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Mon, 26 Jan 2026 14:23:12 -0500 Subject: Add regex and case sensitivity options to FilterEdit --- plugins/warp/ui/matches.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/warp/ui/matches.cpp') 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) { // 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) { -- cgit v1.3.1