From 7d70cef9ce3c60e3581e9377023efc6facc23c8a Mon Sep 17 00:00:00 2001 From: Jason P Date: Tue, 27 Jan 2026 13:09:31 -0600 Subject: [PATCH] Finish message bubble tuning --- src/graphics/draw/MessageRenderer.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/graphics/draw/MessageRenderer.cpp b/src/graphics/draw/MessageRenderer.cpp index ecaa220cf..193164439 100644 --- a/src/graphics/draw/MessageRenderer.cpp +++ b/src/graphics/draw/MessageRenderer.cpp @@ -875,13 +875,13 @@ void drawTextMessageFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16 if (b.mine) { // Send Message (Right side) - display->drawRect(x1 - bubbleW, y1 - bubbleH, bubbleW + 1, bubbleH); + display->drawRect(x1 + 2 - bubbleW, y1 - bubbleH, bubbleW, bubbleH); // Top Right Corner - display->drawRect(x1 - 2, topY, 2, 1); - display->drawRect(x1 - 1, topY, 1, 2); + display->drawRect(x1, topY, 2, 1); + display->drawRect(x1, topY, 1, 2); // Bottom Right Corner - display->drawRect(x1 - 2, bottomY - 2, 2, 1); - display->drawRect(x1 - 1, bottomY - 3, 1, 2); + display->drawRect(x1 - 1, bottomY - 2, 2, 1); + display->drawRect(x1, bottomY - 3, 1, 2); // Knock the corners off to make a bubble display->setColor(BLACK); display->drawRect(x1 - bubbleW, topY - 1, 1, 1);