loading remove

This commit is contained in:
2026-08-02 20:39:02 +02:00
parent 9d504739be
commit 3629c44ee8
3 changed files with 5 additions and 38 deletions
+1 -5
View File
@@ -95,14 +95,10 @@ void mvgScreen_refresh(Screen &) {
buildList();
}
void mvgScreen_tick(Screen &s) {
void mvgScreen_tick(Screen &) {
if (lastFetchMs == 0 || millis() - lastFetchMs >= REFRESH_INTERVAL_MS) {
s.showLoading(true);
lv_timer_handler();
doFetch();
buildList();
s.showLoading(false);
lv_timer_handler();
}
}