From f7d075a951a2827337599051b7fb3a9f04c58eb0 Mon Sep 17 00:00:00 2001 From: Jason P Date: Mon, 2 Jun 2025 15:45:34 -0500 Subject: [PATCH] Adjust Nodelist Center Divider Adjust Nodelist Center Divider --- src/graphics/draw/NodeListRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/draw/NodeListRenderer.cpp b/src/graphics/draw/NodeListRenderer.cpp index bb7556f02..58a52cbcd 100644 --- a/src/graphics/draw/NodeListRenderer.cpp +++ b/src/graphics/draw/NodeListRenderer.cpp @@ -151,7 +151,7 @@ void retrieveAndSortNodes(std::vector &nodeList) void drawColumnSeparator(OLEDDisplay *display, int16_t x, int16_t yStart, int16_t yEnd) { int columnWidth = display->getWidth() / 2; - int separatorX = x + columnWidth - 1; + int separatorX = x + columnWidth - 2; for (int y = yStart; y <= yEnd; y += 2) { display->setPixel(separatorX, y); }