Moved node count graphic slightly to the left, to allow room for triple-digit node counts

1.2-legacy
Professr 2020-06-21 19:44:32 -07:00
rodzic d8287e9cdb
commit 5c9f22bc18
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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);
}