From 2fedc4702b8f93f6fba87f0fd0ab6394e6a8a176 Mon Sep 17 00:00:00 2001 From: Jason P Date: Sun, 8 Jun 2025 18:57:53 -0500 Subject: [PATCH] Tik-tok pixels are hard --- src/graphics/draw/ClockRenderer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphics/draw/ClockRenderer.cpp b/src/graphics/draw/ClockRenderer.cpp index 51724a2ef..24adb50cf 100644 --- a/src/graphics/draw/ClockRenderer.cpp +++ b/src/graphics/draw/ClockRenderer.cpp @@ -274,9 +274,9 @@ void drawDigitalClockFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int1 // draw seconds string display->setFont(FONT_SMALL); - int xOffset = (SCREEN_WIDTH > 128) ? 0 : 0; + int xOffset = (SCREEN_WIDTH > 128) ? 0 : -1; if (hour >= 10) { - xOffset += (SCREEN_WIDTH > 128) ? 0 : 17; + xOffset += (SCREEN_WIDTH > 128) ? 0 : 18; } int yOffset = (SCREEN_WIDTH > 128) ? 3 : 1; if (config.display.use_12h_clock) {