Skip to content

Commit 5ab2752

Browse files
committed
make server version string searchable
1 parent 17cc731 commit 5ab2752

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/connectdlg.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -736,6 +736,12 @@ void CConnectDlg::UpdateListFilter()
736736
bFilterFound = true;
737737
}
738738

739+
// search version
740+
if ( pCurListViewItem->text ( LVC_VERSION ).indexOf ( sFilterText, 0, Qt::CaseInsensitive ) >= 0 )
741+
{
742+
bFilterFound = true;
743+
}
744+
739745
// search children
740746
for ( int iCCnt = 0; iCCnt < pCurListViewItem->childCount(); iCCnt++ )
741747
{

0 commit comments

Comments
 (0)