diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-11-29 13:40:03 -0600 |
---|---|---|
committer | joeycastillo <joeycastillo@utexas.edu> | 2022-11-29 13:40:03 -0600 |
commit | 45470d57817f67e2288af375b1df6bb474952fb8 (patch) | |
tree | 9cf3e100afbb18a57c5290a789b1eb4841a52478 | |
parent | 41d9b00ba64fffd7c5506f093579025fc99a5253 (diff) | |
download | Sensor-Watch-45470d57817f67e2288af375b1df6bb474952fb8.tar.gz Sensor-Watch-45470d57817f67e2288af375b1df6bb474952fb8.tar.bz2 Sensor-Watch-45470d57817f67e2288af375b1df6bb474952fb8.zip |
stopwatch: slow down sleep animation
-rw-r--r-- | movement/watch_faces/complication/stopwatch_face.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/complication/stopwatch_face.c b/movement/watch_faces/complication/stopwatch_face.c index f6270b47..2a69e9d5 100644 --- a/movement/watch_faces/complication/stopwatch_face.c +++ b/movement/watch_faces/complication/stopwatch_face.c @@ -148,7 +148,7 @@ bool stopwatch_face_loop(movement_event_t event, movement_settings_t *settings, // explicitly ignore the timeout event so we stay on screen break; case EVENT_LOW_ENERGY_UPDATE: - if (!watch_tick_animation_is_running()) watch_start_tick_animation(500); + if (!watch_tick_animation_is_running()) watch_start_tick_animation(1000); if (!stopwatch_state->running) { // since the tick animation is running, displaying the stopped time could be misleading, // as it could imply that the stopwatch is running. instead, show a blank display to |