From 9121c0cfb85006165f7c73ab93a9b64d919d1295 Mon Sep 17 00:00:00 2001 From: Alessandro Genova Date: Tue, 29 Jul 2025 00:27:16 -0400 Subject: [PATCH] Fix set_time_face erroneously setting the local time when changing timezone --- watch-faces/settings/set_time_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watch-faces/settings/set_time_face.c b/watch-faces/settings/set_time_face.c index 1bcf2123..63fc34fd 100644 --- a/watch-faces/settings/set_time_face.c +++ b/watch-faces/settings/set_time_face.c @@ -44,7 +44,7 @@ static void _handle_alarm_button(watch_date_time_t date_time, uint8_t current_pa movement_set_timezone_index(movement_get_timezone_index() + 1); if (movement_get_timezone_index() >= NUM_ZONE_NAMES) movement_set_timezone_index(0); current_offset = movement_get_current_timezone_offset_for_zone(movement_get_timezone_index()); - break; + return; case 0: // year date_time.unit.year = ((date_time.unit.year % 60) + 1); break;