InfiniTime.git

commit 42fcb99b389139c974742ad807a5a6da61231a5c

Author: Mingjie Shen <shen497@purdue.edu>

StopWatch: Add an extra space to the string without the hour

so that it's just as long as with the hour.

 src/displayapp/screens/StopWatch.cpp | 2 +-


diff --git a/src/displayapp/screens/StopWatch.cpp b/src/displayapp/screens/StopWatch.cpp
index d2b811542f233ab7a88097d482edce988d02e958..f0359da4d468003dc4b072268c7674aeed7c06a6 100644
--- a/src/displayapp/screens/StopWatch.cpp
+++ b/src/displayapp/screens/StopWatch.cpp
@@ -200,7 +200,7 @@       }
       TimeSeparated_t times = convertTicksToTimeSegments(laps[i]);
       char buffer[17];
       if (times.hours == 0) {
-        snprintf(buffer, sizeof(buffer), "#%2d   %2d:%02d.%02d\n", i + 1, times.mins, times.secs, times.hundredths);
+        snprintf(buffer, sizeof(buffer), "#%2d    %2d:%02d.%02d\n", i + 1, times.mins, times.secs, times.hundredths);
       } else {
         snprintf(buffer, sizeof(buffer), "#%2d %2d:%02d:%02d.%02d\n", i + 1, times.hours, times.mins, times.secs, times.hundredths);
       }