added som missing stuff

This commit is contained in:
Dorian Zedler 2020-10-04 16:05:16 +02:00
parent b8e8f45222
commit d10803745f
Signed by: dorian
GPG key ID: D3B255CB8BC7CD37
2 changed files with 6 additions and 1 deletions

View file

@ -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;

View file

@ -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 = "---";