From 28ddaa2eb0371b35d9ae4554e033363dae57af54 Mon Sep 17 00:00:00 2001 From: Jason P Date: Fri, 29 Aug 2025 16:09:02 -0500 Subject: [PATCH] Account for low resolution wide screen OLEDs --- src/graphics/SharedUIDisplay.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/graphics/SharedUIDisplay.cpp b/src/graphics/SharedUIDisplay.cpp index b458e54e4..53fb8e993 100644 --- a/src/graphics/SharedUIDisplay.cpp +++ b/src/graphics/SharedUIDisplay.cpp @@ -16,6 +16,10 @@ void determineResolution(int16_t screenheight, int16_t screenwidth) isHighResolution = true; } + if (screenwidth > 128 && screenheight <= 64) { + isHighResolution = false; + } + // Special case for Heltec Wireless Tracker v1.1 if (screenwidth == 160 && screenheight == 80) { isHighResolution = false;