aboutsummaryrefslogtreecommitdiffstats
path: root/pico-watch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pico-watch.cpp')
-rw-r--r--pico-watch.cpp6
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;
}
08'>108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136