Merge pull request #452 from dingodoppelt/showmaxclients
show number of connected clients as well as max clients in serverbrowser
This commit is contained in:
commit
7b8cfd6387
1 changed files with 1 additions and 1 deletions
|
@ -769,7 +769,7 @@ void CConnectDlg::SetPingTimeAndNumClientsResult ( const CHostAddress& InetAddr,
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
pCurListViewItem->
|
pCurListViewItem->
|
||||||
setText ( 2, QString().setNum ( iNumClients ) );
|
setText ( 2, QString().setNum ( iNumClients ) + "/" + pCurListViewItem->text ( 5 ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if the number of child list items matches the number of
|
// check if the number of child list items matches the number of
|
||||||
|
|
Loading…
Reference in a new issue