From 1fd95d85b8d80dc7c8e701923b8d032c35992cbf Mon Sep 17 00:00:00 2001 From: HarukiToreda <116696711+HarukiToreda@users.noreply.github.com> Date: Sun, 30 Mar 2025 01:42:34 -0400 Subject: [PATCH] Bug was making bold get undone --- src/graphics/Screen.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index 3f9687d1f..6236343a1 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -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 * // ****************************