diff --git a/ScStwLibraries/sources/client/scstwremoterace.cpp b/ScStwLibraries/sources/client/scstwremoterace.cpp index 7ac0307..096dd7e 100644 --- a/ScStwLibraries/sources/client/scstwremoterace.cpp +++ b/ScStwLibraries/sources/client/scstwremoterace.cpp @@ -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; diff --git a/ScStwLibraries/sources/scstwtimer.cpp b/ScStwLibraries/sources/scstwtimer.cpp index fdded29..b0e01e5 100644 --- a/ScStwLibraries/sources/scstwtimer.cpp +++ b/ScStwLibraries/sources/scstwtimer.cpp @@ -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 = "---";