Bug was making bold get undone

This commit is contained in:
HarukiToreda 2025-03-30 01:42:34 -04:00
parent 50db11fff6
commit 1fd95d85b8

View File

@ -2221,13 +2221,9 @@ static void drawActivity(OLEDDisplay *display, OLEDDisplayUiState *state, int16_
drawCommonHeader(display, x, y, "Log");
// === Second Row: Draw any log messages ===
bool origBold = config.display.heading_bold;
config.display.heading_bold = false;
int secondRowY = y + FONT_HEIGHT_SMALL + 1;
display->drawLogBuffer(x, secondRowY);
}
// ****************************
// * My Position Screen *
// ****************************