small fix

This commit is contained in:
Volker Fischer 2020-04-14 17:58:01 +02:00
parent 33c7b03e75
commit 83e95c3a7b

View File

@ -219,8 +219,11 @@ void CConnectDlg::RequestServerList()
// clear filter edit box
edtFilter->setText ( "" );
// per default we expand all list items
chbExpandAll->setCheckState ( Qt::Checked );
// per default we expand all list items (not for the show all servers mode)
if ( !bShowCompleteRegList )
{
chbExpandAll->setCheckState ( Qt::Checked );
}
// get the IP address of the central server (using the ParseNetworAddress
// function) when the connect dialog is opened, this seems to be the correct