Skip to content

Commit e92258f

Browse files
committed
Remove colon from seconds only text
1 parent 24cd41f commit e92258f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/displayapp/widgets/StatusIcons.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void StatusIcons::Update() {
111111
lv_label_set_text_fmt(timeRemaining, "%02d:%02d", timerMinutes, timerSeconds);
112112
} else {
113113
maxIcons = 3;
114-
lv_label_set_text_fmt(timeRemaining, ":%02d", timerSeconds);
114+
lv_label_set_text_fmt(timeRemaining, "%02d", timerSeconds);
115115
}
116116

117117
if (settingsController.GetClockType() == Controllers::Settings::ClockType::H24) {

0 commit comments

Comments
 (0)