From 88ab198e0f0e713ce0e41741f8207b23183e6034 Mon Sep 17 00:00:00 2001 From: Jason P Date: Wed, 25 Jun 2025 09:10:04 -0500 Subject: [PATCH] Use all the rows on EInk since with autohide the navigation bar --- src/graphics/draw/NodeListRenderer.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/graphics/draw/NodeListRenderer.cpp b/src/graphics/draw/NodeListRenderer.cpp index 35f368f68..98d9996a5 100644 --- a/src/graphics/draw/NodeListRenderer.cpp +++ b/src/graphics/draw/NodeListRenderer.cpp @@ -446,9 +446,7 @@ void drawNodeListScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t int totalEntries = nodeList.size(); int totalRowsAvailable = (display->getHeight() - y) / rowYOffset; -#ifdef USE_EINK - totalRowsAvailable -= 1; -#endif + int visibleNodeRows = totalRowsAvailable; int totalColumns = 2;