small fix
This commit is contained in:
parent
33c7b03e75
commit
83e95c3a7b
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue