From 3088e37d2416c0565e1a4f8e932e72bea48e6d27 Mon Sep 17 00:00:00 2001 From: Jason P Date: Wed, 17 Dec 2025 10:54:32 -0600 Subject: [PATCH] Mistakes happen - restoring NodeList Renderer line --- src/graphics/draw/NodeListRenderer.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/graphics/draw/NodeListRenderer.cpp b/src/graphics/draw/NodeListRenderer.cpp index b269c68a2..e10d8c40a 100644 --- a/src/graphics/draw/NodeListRenderer.cpp +++ b/src/graphics/draw/NodeListRenderer.cpp @@ -563,6 +563,14 @@ void drawNodeListScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t // This should correct the scrollbar totalEntries -= numskipped; + // Draw column separator + if (currentResolution != ScreenResolution::UltraLow && shownCount > 0) { + const int firstNodeY = y + 3; + for (int horizontal_offset = 1; horizontal_offset < totalColumns; horizontal_offset++) { + drawColumnSeparator(display, columnWidth * horizontal_offset, firstNodeY, lastNodeY); + } + } + const int scrollStartY = y + 3; drawScrollbar(display, visibleNodeRows, totalEntries, scrollIndex, totalColumns, scrollStartY); graphics::drawCommonFooter(display, x, y);