Show user-color in <> angle-brackets

This commit is contained in:
Jaidyn Ann 2021-06-08 13:04:56 -05:00
parent 5dbaa41c64
commit bc2c211458

View File

@ -29,8 +29,9 @@ CayaRenderView::AppendMessage(const char* nick, const char* message,
rgb_color bg = ui_color(B_PANEL_BACKGROUND_COLOR); rgb_color bg = ui_color(B_PANEL_BACKGROUND_COLOR);
rgb_color fg = ui_color(B_PANEL_TEXT_COLOR); rgb_color fg = ui_color(B_PANEL_TEXT_COLOR);
Append(nick, nameColor, bg, nameColor); Append("<", nameColor, bg, nameColor);
Append(": ", nameColor, bg, nameColor); Append(nick, fg, bg, fg);
Append("> ", nameColor, bg, nameColor);
// AddEmoticText(message, fg, bg); // AddEmoticText(message, fg, bg);
Append(message, fg, bg, fg); Append(message, fg, bg, fg);
Append("\n", fg, bg, fg); Append("\n", fg, bg, fg);