diff options
author | angela <angela@lindenlab.com> | 2009-11-16 20:46:40 +0800 |
---|---|---|
committer | angela <angela@lindenlab.com> | 2009-11-16 20:46:40 +0800 |
commit | 1baf1d218644ac5dc00d9b41119a1ef168c709a2 (patch) | |
tree | 1ddea72957ea597b655c51d144bc83cfbb32d774 /indra/newview/llchathistory.cpp | |
parent | 6b47e36b159a0e036beb442b82b1356aa756f152 (diff) |
fix chat format for /me
Diffstat (limited to 'indra/newview/llchathistory.cpp')
-rw-r--r-- | indra/newview/llchathistory.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index 028bb7a384..bec8eb2666 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -345,7 +345,7 @@ LLView* LLChatHistory::getHeader(const LLChat& chat,const LLStyle::Params& style return header; } -void LLChatHistory::appendWidgetMessage(const LLChat& chat) +void LLChatHistory::appendWidgetMessage(const LLChat& chat, const LLStyle::Params& input_append_params) { LLView* view = NULL; std::string view_text = "\n[" + formatCurrentTime() + "] "; @@ -367,7 +367,9 @@ void LLChatHistory::appendWidgetMessage(const LLChat& chat) style_params.color(txt_color); style_params.readonly_color(txt_color); style_params.font(fontp); - + style_params.italic = input_append_params.italic; + style_params.underline = input_append_params.underline; + style_params.bold = input_append_params.bold; if (mLastFromName == chat.mFromName) { |