From 252e97f139aad9cd1b63b69c72b00f564d1cb389 Mon Sep 17 00:00:00 2001 From: imnotacoder-eeeee Date: Wed, 29 May 2024 21:34:07 -0400 Subject: [PATCH] multi-line doesnt seem bugged and joins still work, will work on the small gap in buffer at the bottom --- src/main.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.ino b/src/main.ino index fe27005..7c36986 100644 --- a/src/main.ino +++ b/src/main.ino @@ -993,9 +993,9 @@ void displayLines() { String senderNick = line.substring(startIndex, endIndex); String actionMessage = line.substring(endIndex + 1); tft.setTextColor(nickColors[senderNick]); - tft.print(senderNick + " "); - tft.setTextColor(TFT_WHITE); - tft.print(actionMessage); + tft.print(senderNick); + tft.setTextColor(TFT_MAGENTA); + tft.print(" " + actionMessage); cursorY += CHAR_HEIGHT; } else { int colonIndex = line.indexOf(':');