AppMatch: update at least once a second

This commit is contained in:
Patrick Haßel 2025-01-10 13:13:10 +01:00
parent 7e5b24a11a
commit 66a8474fca

View File

@ -123,14 +123,10 @@ protected:
}
}
if (state == MINUTES || (state == SECONDS && !configCentis)) {
if (updateSeconds != totalSeconds) {
updateSeconds = totalSeconds;
markDirty();
}
}
if (state == SECONDS && configCentis) {
if (updateSeconds != totalSeconds) {
updateSeconds = totalSeconds;
markDirty();
} else if (state == SECONDS && configCentis) {
markDirty();
}
}