Feature Request: Shouts should be in bold.

Yes, they should.
This commit is contained in:
Lirusaito
2019-02-02 18:42:15 -05:00
parent 8208730130
commit 6c219bd628

View File

@@ -222,6 +222,7 @@ void add_timestamped_line(LLViewerTextEditor* edit, LLChat chat, const LLColor4&
LLStyleSP style(new LLStyle);
style->setColor(color);
style->mItalic = is_irc;
style->mBold = chat.mChatType == CHAT_TYPE_SHOUT;
edit->appendText(line, false, prepend_newline, style);
}