From 6c219bd6280df3e4cf9e9144af4c4eaa9e5e4f12 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Sat, 2 Feb 2019 18:42:15 -0500 Subject: [PATCH] Feature Request: Shouts should be in bold. Yes, they should. --- indra/newview/llfloaterchat.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/newview/llfloaterchat.cpp b/indra/newview/llfloaterchat.cpp index b1fc6b39a..adaff4652 100644 --- a/indra/newview/llfloaterchat.cpp +++ b/indra/newview/llfloaterchat.cpp @@ -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); }