From 94258cfd1c2b4da5f49b04cb448bf5b5a19cea1b Mon Sep 17 00:00:00 2001 From: Jason P Date: Wed, 25 Jun 2025 16:32:36 -0500 Subject: [PATCH] Adjust text location for pop-ups --- src/graphics/draw/NotificationRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/draw/NotificationRenderer.cpp b/src/graphics/draw/NotificationRenderer.cpp index eb5e540af..e19328c7e 100644 --- a/src/graphics/draw/NotificationRenderer.cpp +++ b/src/graphics/draw/NotificationRenderer.cpp @@ -200,7 +200,7 @@ void NotificationRenderer::drawAlertBannerOverlay(OLEDDisplay *display, OLEDDisp lineY += (effectiveLineHeight - 2 - background_yOffset); } else { // Pop-up - display->drawString(textX, lineY, lineBuffer); + display->drawString(textX, lineY - 2, lineBuffer); lineY += (effectiveLineHeight); } }