From 38af8c7b38211af35d151913eb4999f148041bbd Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 17 Apr 2025 19:25:46 -0500 Subject: [PATCH] align time with AMPM --- src/clock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clock.py b/src/clock.py index b2183f18..c6294484 100644 --- a/src/clock.py +++ b/src/clock.py @@ -113,7 +113,7 @@ class Clock: # Draw time (large, centered, near top) self.display_manager.draw_text( time_str, - y=2, # Move up slightly to make room for two lines of date + y=4, # Move up slightly to make room for two lines of date color=self.COLORS['time'], small_font=True )