From 7c9c32bd0ede6d17ad0e179a0837838ff440ddfb Mon Sep 17 00:00:00 2001 From: cottongin Date: Mon, 6 Apr 2026 20:50:02 -0400 Subject: [PATCH] style: vertically center headlines in the bottom box Made-with: Cursor --- src/cover.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cover.py b/src/cover.py index 912b01f..8599409 100644 --- a/src/cover.py +++ b/src/cover.py @@ -80,7 +80,7 @@ def _draw_text_overlays( [(0, strip_top), (width, height)], fill=(0, 0, 0, 170) ) max_width = width - 32 - y = strip_top + 8 + y = strip_top + 14 for headline in headlines[:max_headlines]: text = f"\u2022 {headline}" text = _truncate_to_width(text, headline_font, max_width)