From: mcguirepr89 Date: Sat, 31 Aug 2024 21:47:15 +0000 (-0400) Subject: negative toggle was only for first_num -- fixed X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=70426751f85e9986b063b73aa8aa792b9773329b;p=sensor-watch.git negative toggle was only for first_num -- fixed --- diff --git a/movement/watch_faces/complication/simple_calculator_face.c b/movement/watch_faces/complication/simple_calculator_face.c index 95804ce..3542590 100644 --- a/movement/watch_faces/complication/simple_calculator_face.c +++ b/movement/watch_faces/complication/simple_calculator_face.c @@ -321,7 +321,7 @@ bool simple_calculator_face_loop(movement_event_t event, movement_settings_t *se break; case MODE_ENTERING_SECOND_NUM: // toggle negative on state->second_num - state->first_num.negative = !state->first_num.negative; + state->second_num.negative = !state->second_num.negative; break; case MODE_ERROR: reset_from_error(state);