From bc18202736784dac01ee91ed626a263451ee3133 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Tue, 16 Sep 2025 12:21:17 -0400 Subject: [PATCH] shift of the day underline up one pixel --- src/of_the_day_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/of_the_day_manager.py b/src/of_the_day_manager.py index ba29abc7..8f304a02 100644 --- a/src/of_the_day_manager.py +++ b/src/of_the_day_manager.py @@ -496,7 +496,7 @@ class OfTheDayManager: self._draw_bdf_text(draw, title_font, title, title_x, title_y, color=self.title_color) # --- Draw Underline --- - underline_y = title_y + title_height + 2 # Space after title + underline_y = title_y + title_height + 1 # Reduced space after title underline_x_start = title_x underline_x_end = title_x + title_width draw.line([(underline_x_start, underline_y), (underline_x_end, underline_y)], fill=self.title_color, width=1)