summaryrefslogtreecommitdiff
path: root/Layout/LayoutSurveyProgress.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Layout/LayoutSurveyProgress.cpp')
-rw-r--r--Layout/LayoutSurveyProgress.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Layout/LayoutSurveyProgress.cpp b/Layout/LayoutSurveyProgress.cpp
index c0434f7..4a50fbb 100644
--- a/Layout/LayoutSurveyProgress.cpp
+++ b/Layout/LayoutSurveyProgress.cpp
@@ -27,7 +27,9 @@ void LayoutSurveyProgress::updateCountdown(uint32_t seconds) {
size_t size;
memset(buf, 0, sizeof(buf));
- writeField(_fCountdownLabel, "No Free Channel", true);
+ // for some reason, there's a % character that gets displayed in the last column
+ // add the extra spaces to wipe it out
+ writeField(_fCountdownLabel, "No Free Channel ", true);
size = snprintf(buf, sizeof(buf), "%lu s", seconds);
writeField(_fCountdown, buf, size, true);
}