bug fix: the ping time LED was not reset if the connection was stopped
This commit is contained in:
parent
1593661c25
commit
403f3a52f2
2 changed files with 7 additions and 2 deletions
|
@ -1078,7 +1078,7 @@ OnTimerStatus();
|
|||
ledBuffers->Reset();
|
||||
ledDelay->Reset();
|
||||
ledChat->Reset();
|
||||
ClientSettingsDlg.ResetStatus();
|
||||
ClientSettingsDlg.ResetStatusAndPingLED();
|
||||
|
||||
// clear mixer board (remove all faders)
|
||||
MainMixerBoard->HideAll();
|
||||
|
|
|
@ -56,7 +56,12 @@ public:
|
|||
Qt::WindowFlags f = 0 );
|
||||
|
||||
void SetStatus ( const CMultiColorLED::ELightColor eStatus ) { ledNetw->SetLight ( eStatus ); }
|
||||
void ResetStatus() { ledNetw->Reset(); }
|
||||
|
||||
void ResetStatusAndPingLED()
|
||||
{
|
||||
ledNetw->Reset();
|
||||
ledOverallDelay->Reset();
|
||||
}
|
||||
|
||||
void SetPingTimeResult ( const int iPingTime,
|
||||
const int iOverallDelayMs,
|
||||
|
|
Loading…
Reference in a new issue