Skip to content

Commit c4cf62c

Browse files
committed
Minutes can fit 2 extra icons in 24H mode
1 parent fbe50b9 commit c4cf62c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/displayapp/widgets/StatusIcons.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,10 @@ void StatusIcons::Update() {
115115
}
116116

117117
if (settingsController.GetClockType() == Controllers::Settings::ClockType::H24) {
118-
maxIcons += 1;
118+
maxIcons++;
119+
if (timerMinutes > 0) {
120+
maxIcons++;
121+
}
119122
}
120123

121124
if (activeIconCounter > maxIcons) {

0 commit comments

Comments
 (0)