From 8aaedb81ddd08ee030f4a59853c84bf2bb46af50 Mon Sep 17 00:00:00 2001 From: Ted Schundler Date: Thu, 17 Jul 2025 23:07:37 -0700 Subject: [PATCH] correct swapped screen positions for BRC vs bearings display --- src/graphics/Screen.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index a86a6f0eb..b129b3d45 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -905,7 +905,7 @@ void Screen::setFrames(FrameFocus focus) // Show detailed node views only on E-Ink builds #ifdef USE_EINK - fsi.positions.nodelist_brc = numframes; + fsi.positions.nodelist_bearings = numframes; normalFrames[numframes++] = graphics::NodeListRenderer::drawLastHeardScreen; indicatorIcons.push_back(icon_nodes); @@ -922,7 +922,7 @@ void Screen::setFrames(FrameFocus focus) indicatorIcons.push_back(icon_list); #endif #if HAS_GPS - fsi.positions.nodelist_bearings = numframes; + fsi.positions.nodelist_brc = numframes; normalFrames[numframes++] = graphics::NodeListRenderer::drawBRCList; indicatorIcons.push_back(icon_bm); @@ -1452,4 +1452,4 @@ bool shouldWakeOnReceivedMessage() return false; } return true; -} \ No newline at end of file +}