fixed race clock countdown/count up #story[1109]

This commit is contained in:
Peter Galloway
2017-08-14 16:32:50 +12:00
parent d2fd9ebaea
commit ff92262a78
4 changed files with 18 additions and 22 deletions
@@ -359,12 +359,12 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel
* Updates the clock for the race
*/
private void updateRaceTime() {
if (!raceState.isRaceStarted()) {
timerLabel.setFill(Color.RED);
timerLabel.setText("Race Finished!");
} else {
timerLabel.setText(raceState.getRaceTimeStr());
}
// if (!raceState.isRaceStarted()) {
// timerLabel.setFill(Color.RED);
// timerLabel.setText("Race Finished!");
// } else {
timerLabel.setText(raceState.getRaceTimeStr());
// }
}
/**