From 9446f07c4d01d0efd0a5f8eee5b2030c29bbe48a Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Wed, 25 Jun 2025 11:28:45 -0500 Subject: [PATCH] trunk --- src/graphics/draw/NotificationRenderer.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/graphics/draw/NotificationRenderer.cpp b/src/graphics/draw/NotificationRenderer.cpp index 96c0cbd80..7b8809f4f 100644 --- a/src/graphics/draw/NotificationRenderer.cpp +++ b/src/graphics/draw/NotificationRenderer.cpp @@ -214,12 +214,7 @@ void NotificationRenderer::drawAlertBannerOverlay(OLEDDisplay *display, OLEDDisp if (i == lineCount - 1) { const uint8_t extraOffset = 4; // you can tweak this value (e.g. 5 or 6 for more space) int16_t separatorY = lineY + extraOffset - 1; - display->drawLine( - boxLeft + padding, - separatorY, - boxLeft + boxWidth - padding, - separatorY - ); + display->drawLine(boxLeft + padding, separatorY, boxLeft + boxWidth - padding, separatorY); lineY = separatorY + 1; // ensure options appear below the line } }