From 08d24ba0d710a5a2eff3b3e9f502ccf320eed9bd Mon Sep 17 00:00:00 2001 From: Warwick New Date: Fri, 24 Jul 2026 11:55:49 +0100 Subject: [PATCH] Fix settings not being applied (Still waits until next draw) --- src/c/main.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/c/main.c b/src/c/main.c index 085c3a6..5a8675c 100644 --- a/src/c/main.c +++ b/src/c/main.c @@ -58,11 +58,18 @@ static void inbox_recieved_callback(DictionaryIterator *iter, void *context) { settings.EatingWindowEnd = fast_end_t->value->cstring; } + // Apply colour settings in the even they've been changed + text_layer_set_background_color(s_time_layer, settings.BackgroundColor); + text_layer_set_text_color(s_time_layer, settings.ForegroundColor); + text_layer_set_background_color(s_date_layer, settings.BackgroundColor); + text_layer_set_text_color(s_date_layer, settings.ForegroundColor); + // Save the new settings to persistent storage save_settings(); } static void update_time() { + // Get a tm structure time_t now = time(NULL); struct tm *tick_time = localtime(&now);