From a18c285e5846ddd2ac5be6876f50bdffb9d17bb8 Mon Sep 17 00:00:00 2001 From: Jeremy O'Brien Date: Thu, 26 Jan 2023 10:44:11 -0500 Subject: restore old light button behavior watch faces that handle EVENT_LIGHT_BUTTON_UP but not EVENT_LIGHT_BUTTON_DOWN probably don't want the default EVENT_LIGHT_BUTTON_DOWN LED activation behavior --- movement/watch_faces/demo/frequency_correction_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'movement/watch_faces/demo') diff --git a/movement/watch_faces/demo/frequency_correction_face.c b/movement/watch_faces/demo/frequency_correction_face.c index 3fdef7ee..17457177 100644 --- a/movement/watch_faces/demo/frequency_correction_face.c +++ b/movement/watch_faces/demo/frequency_correction_face.c @@ -96,7 +96,7 @@ bool frequency_correction_face_loop(movement_event_t event, movement_settings_t break; case EVENT_TICK: break; - case EVENT_LIGHT_BUTTON_UP: + case EVENT_LIGHT_BUTTON_DOWN: freqcorr = RTC->MODE2.FREQCORR.reg; if (freqcorr < 127) { RTC->MODE2.FREQCORR.reg++; -- cgit v1.2.3