From 83e95c3a7b45b39e15d0a27f994c7815a93343de Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Tue, 14 Apr 2020 17:58:01 +0200 Subject: [PATCH] small fix --- src/connectdlg.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/connectdlg.cpp b/src/connectdlg.cpp index 6e4673db..8408a596 100755 --- a/src/connectdlg.cpp +++ b/src/connectdlg.cpp @@ -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