diff options
author | MaximB ProductEngine <mberezhnoy@productengine.com> | 2012-11-19 07:42:39 +0200 |
---|---|---|
committer | MaximB ProductEngine <mberezhnoy@productengine.com> | 2012-11-19 07:42:39 +0200 |
commit | 0cb67ec3762c1f1671fd01e331fe64a210098fd2 (patch) | |
tree | 0db5dbda4ba7fc4dbade848ffc6daeebb48a5071 | |
parent | 61f3c1b41ddedc16f2026c62600475105621b305 (diff) |
CHUI-423 (User typing /me something in chat does not show correctly in italics on outgoing or incoming chat)
-rw-r--r-- | indra/newview/llchathistory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index 605e3ece51..a33bd88273 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -809,7 +809,7 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL if (irc_me || chat.mChatStyle == CHAT_STYLE_IRC) { delimiter = LLStringUtil::null; - name_params.font.style = "ITALIC"; + body_message_params.font.style = "ITALIC"; } bool message_from_log = chat.mChatStyle == CHAT_STYLE_HISTORY; |