From d10803745fee19b6dba56d75647ed5b292182256 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Sun, 4 Oct 2020 16:05:16 +0200 Subject: [PATCH] added som missing stuff --- ScStwLibraries/sources/client/scstwremoterace.cpp | 2 ++ ScStwLibraries/sources/scstwtimer.cpp | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) 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 = "---";