From 5c9f22bc18f8bac63a31deeb9e270fdc9b78cad6 Mon Sep 17 00:00:00 2001 From: Professr Date: Sun, 21 Jun 2020 19:44:32 -0700 Subject: [PATCH] Moved node count graphic slightly to the left, to allow room for triple-digit node counts --- src/screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.cpp b/src/screen.cpp index 6cc2c70aa..acbf95327 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -701,7 +701,7 @@ void DebugInfo::drawFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16 // Display power status if (powerStatus.haveBattery) drawBattery(display, x, y + 2, imgBattery, &powerStatus); else display->drawFastImage(x, y + 2, 16, 8, powerStatus.usb ? imgUSB : imgPower); // Display nodes status - drawNodes(display, x + (SCREEN_WIDTH * 0.33), y + 2, nodesOnline, nodesTotal); + drawNodes(display, x + (SCREEN_WIDTH * 0.25), y + 2, nodesOnline, nodesTotal); // Display GPS status drawGPS(display, x + (SCREEN_WIDTH * 0.66), y + 2, gps); }