From 21f57f04b11c6f7f25c7410e53f6e80111c7413b Mon Sep 17 00:00:00 2001 From: Roland Knall Date: Wed, 23 Feb 2022 16:31:35 +0000 Subject: [PATCH] Lua: Forward display filter text info Fix issues caused with previous commits Fixes: #17188 --- ui/qt/main_window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/qt/main_window.cpp b/ui/qt/main_window.cpp index ae06bb73b1..9df7fba33d 100644 --- a/ui/qt/main_window.cpp +++ b/ui/qt/main_window.cpp @@ -426,6 +426,7 @@ MainWindow::MainWindow(QWidget *parent) : df_combo_box_ = new DisplayFilterCombo(this); funnel_statistics_ = new FunnelStatistics(this, capture_file_); + connect(df_combo_box_, &QComboBox::editTextChanged, funnel_statistics_, &FunnelStatistics::displayFilterTextChanged); connect(funnel_statistics_, &FunnelStatistics::setDisplayFilter, this, &MainWindow::setDisplayFilter); connect(funnel_statistics_, SIGNAL(openCaptureFile(QString, QString)), this, SLOT(openCaptureFile(QString, QString)));