diff options
Diffstat (limited to 'pico-watch.cpp')
-rw-r--r-- | pico-watch.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/pico-watch.cpp b/pico-watch.cpp index 1166716..1a8738a 100644 --- a/pico-watch.cpp +++ b/pico-watch.cpp @@ -28,11 +28,9 @@ bool repeating_callback(struct repeating_timer *t) { app_api.display_power(true); } - // Refresh each app // should it be done when sleeping? - for (auto app : open_apps) { - app->bgrefresh(&app_api, true); // FIXME: second arg - } + app_all_bgrefresh(); + return true; } |