diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2021-11-24 12:18:28 -0500 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2021-11-24 12:18:28 -0500 |
commit | 169d4486f9f0f135565558094bbbd2f6495a3318 (patch) | |
tree | 2e1bcf67d5fc2e07e919b258a92334db00fe5280 | |
parent | 3a420d5c6cfded6a04f4c78aa98c5d4ae7de8ca1 (diff) | |
download | Sensor-Watch-169d4486f9f0f135565558094bbbd2f6495a3318.tar.gz Sensor-Watch-169d4486f9f0f135565558094bbbd2f6495a3318.tar.bz2 Sensor-Watch-169d4486f9f0f135565558094bbbd2f6495a3318.zip |
movement: make TOTP face go home on timeout
-rw-r--r-- | movement/watch_faces/complications/totp_face.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/complications/totp_face.c b/movement/watch_faces/complications/totp_face.c index 017a774b..e58fb47d 100644 --- a/movement/watch_faces/complications/totp_face.c +++ b/movement/watch_faces/complications/totp_face.c @@ -63,7 +63,7 @@ bool totp_face_loop(movement_event_t event, movement_settings_t *settings, void movement_illuminate_led(); break; case EVENT_TIMEOUT: - // go home + movement_move_to_face(0); break; case EVENT_ALARM_BUTTON_DOWN: case EVENT_ALARM_BUTTON_UP: |