From 5ab2752d6e38dcc6d4dfa3d9815387435bedac41 Mon Sep 17 00:00:00 2001 From: Nils Brederlow <62596379+dingodoppelt@users.noreply.github.com> Date: Sat, 16 May 2026 19:01:23 +0200 Subject: [PATCH] make server version string searchable --- src/connectdlg.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/connectdlg.cpp b/src/connectdlg.cpp index 5c16bbc3db..bfe88d3ab5 100644 --- a/src/connectdlg.cpp +++ b/src/connectdlg.cpp @@ -736,6 +736,12 @@ void CConnectDlg::UpdateListFilter() bFilterFound = true; } + // search version + if ( pCurListViewItem->text ( LVC_VERSION ).indexOf ( sFilterText, 0, Qt::CaseInsensitive ) >= 0 ) + { + bFilterFound = true; + } + // search children for ( int iCCnt = 0; iCCnt < pCurListViewItem->childCount(); iCCnt++ ) {