From 8fb1e0f874e7eb5e452db58c20119be05114980a Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Wed, 25 Jun 2025 18:06:52 -0500 Subject: [PATCH] Update src/graphics/draw/NodeListRenderer.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/graphics/draw/NodeListRenderer.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/graphics/draw/NodeListRenderer.cpp b/src/graphics/draw/NodeListRenderer.cpp index bec26be3e..00bedeb7a 100644 --- a/src/graphics/draw/NodeListRenderer.cpp +++ b/src/graphics/draw/NodeListRenderer.cpp @@ -418,7 +418,9 @@ void drawNodeListScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t int totalColumns = 2; int startIndex = scrollIndex * visibleNodeRows * totalColumns; - startIndex++; // skip own node + if (scrollIndex == 0) { + startIndex++; // skip own node + } int endIndex = std::min(startIndex + visibleNodeRows * totalColumns, totalEntries); int yOffset = 0;