diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-10-29 18:09:16 -0500 |
---|---|---|
committer | joeycastillo <joeycastillo@utexas.edu> | 2022-10-29 18:09:16 -0500 |
commit | 501d3f844784fbe5beb2b102fd7f05d43895a87a (patch) | |
tree | be21618a58906d0136cb08836edd5a2f77cb2a1a /movement | |
parent | cb678d735a91e07e762e9f6715584ccfbeaa3fcd (diff) | |
download | Sensor-Watch-501d3f844784fbe5beb2b102fd7f05d43895a87a.tar.gz Sensor-Watch-501d3f844784fbe5beb2b102fd7f05d43895a87a.tar.bz2 Sensor-Watch-501d3f844784fbe5beb2b102fd7f05d43895a87a.zip |
make pulsometer face use new EVENT_ALARM_LONG_UP
Diffstat (limited to 'movement')
-rw-r--r-- | movement/watch_faces/complication/pulsometer_face.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/complication/pulsometer_face.c b/movement/watch_faces/complication/pulsometer_face.c index 1d6f2086..ea7aad59 100644 --- a/movement/watch_faces/complication/pulsometer_face.c +++ b/movement/watch_faces/complication/pulsometer_face.c @@ -59,7 +59,7 @@ bool pulsometer_face_loop(movement_event_t event, movement_settings_t *settings, movement_request_tick_frequency(PULSOMETER_FACE_FREQUENCY); break; case EVENT_ALARM_BUTTON_UP: - case EVENT_ALARM_LONG_PRESS: + case EVENT_ALARM_LONG_UP: pulsometer_state->measuring = false; movement_request_tick_frequency(1); break; |