From 364364263b3abd7bc05ad55102c67bffb696800d Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sat, 19 Aug 2023 09:44:40 -0500 Subject: [PATCH] Remove range_test goalie from drawing frames --- src/graphics/Screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index 43635c441..9ccd28aba 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -365,7 +365,7 @@ static void drawCriticalFaultFrame(OLEDDisplay *display, OLEDDisplayUiState *sta // Ignore messages originating from phone (from the current node 0x0) unless range test or store and forward module are enabled static bool shouldDrawMessage(const meshtastic_MeshPacket *packet) { - return packet->from != 0 && !moduleConfig.range_test.enabled && !moduleConfig.store_forward.enabled; + return packet->from != 0 && !moduleConfig.store_forward.enabled; } /// Draw the last text message we received