multi-line doesnt seem bugged and joins still work, will work on the small gap in buffer at the bottom
This commit is contained in:
parent
711e8dee5b
commit
252e97f139
@ -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(':');
|
||||
|
Loading…
Reference in New Issue
Block a user