Finish message bubble tuning

This commit is contained in:
Jason P
2026-01-27 13:09:31 -06:00
parent 93e4800a23
commit 7d70cef9ce

View File

@@ -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);