small fix
This commit is contained in:
parent
b38b8c01a7
commit
4c1c6ad14a
1 changed files with 3 additions and 2 deletions
|
@ -345,8 +345,9 @@ void CClientSettingsDlg::OnPingTimeResult ( int iPingTime )
|
|||
TextLabelBufferDelay->setText ( QString().setNum ( iTotalBufferDelay ) + " ms" );
|
||||
if ( iPingTime > 500 )
|
||||
{
|
||||
TextLabelPingTime->setText ( "<font color=""red""><b>>500 ms</b></font>" );
|
||||
TextLabelOverallDelay->setText ( "<font color=""red""><b>>500 ms</b></font>" );
|
||||
const QString sErrorText = "<font color=""red""><b>>500 ms</b></font>";
|
||||
TextLabelPingTime->setText ( sErrorText );
|
||||
TextLabelOverallDelay->setText ( sErrorText );
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue