diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-03 15:47:26 -0400 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-03 15:47:26 -0400 |
commit | f7ab99bb69baccee092b93f653e087364938f26b (patch) | |
tree | 20c25c429d94d316a833656c0c6fec716039fa9c | |
parent | dd3e6c5fc37fe2dd42808797400406867e204d7d (diff) | |
download | Sensor-Watch-f7ab99bb69baccee092b93f653e087364938f26b.tar.gz Sensor-Watch-f7ab99bb69baccee092b93f653e087364938f26b.tar.bz2 Sensor-Watch-f7ab99bb69baccee092b93f653e087364938f26b.zip |
moon phase: light LED on press like other faces
-rw-r--r-- | movement/watch_faces/complication/moon_phase_face.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/complication/moon_phase_face.c b/movement/watch_faces/complication/moon_phase_face.c index 0ff7b254..eb919375 100644 --- a/movement/watch_faces/complication/moon_phase_face.c +++ b/movement/watch_faces/complication/moon_phase_face.c @@ -158,7 +158,7 @@ bool moon_phase_face_loop(movement_event_t event, movement_settings_t *settings, case EVENT_MODE_BUTTON_UP: movement_move_to_next_face(); break; - case EVENT_LIGHT_BUTTON_UP: + case EVENT_LIGHT_BUTTON_DOWN: movement_illuminate_led(); break; case EVENT_ALARM_BUTTON_UP: |