added som missing stuff
This commit is contained in:
parent
b8e8f45222
commit
d10803745f
2 changed files with 6 additions and 1 deletions
|
@ -111,6 +111,8 @@ void ScStwRemoteRace::handleClientStateChange() {
|
|||
this->timers = this->localTimers;
|
||||
this->localTimers.clear();
|
||||
emit this->timersChanged();
|
||||
emit this->detailsChanged();
|
||||
emit this->currentStartDelayChanged();
|
||||
this->competitionMode = false;
|
||||
this->setState(IDLE);
|
||||
break;
|
||||
|
|
|
@ -250,11 +250,14 @@ QString ScStwTimer::getText() {
|
|||
case ScStwTimer::FAILED:
|
||||
newText = "false start";
|
||||
break;
|
||||
case ScStwTimer::WILDCARD:
|
||||
newText = "wildcard";
|
||||
break;
|
||||
case ScStwTimer::CANCELLED:
|
||||
newText = "cancelled";
|
||||
break;
|
||||
case ScStwTimer::INCIDENT:
|
||||
newText = "Technical incident!";
|
||||
newText = "Technical\nincident!";
|
||||
break;
|
||||
case ScStwTimer::DISABLED:
|
||||
newText = "---";
|
||||
|
|
Reference in a new issue