diff options
author | Eugene Kondrashev <ekondrashev@productengine.com> | 2009-11-11 19:26:19 +0200 |
---|---|---|
committer | Eugene Kondrashev <ekondrashev@productengine.com> | 2009-11-11 19:26:19 +0200 |
commit | 196e350629fb258acb8c0d784fdcfd50866b92ef (patch) | |
tree | 4483b1a00d65e58a44bda9a14b64e13899e90236 /indra/newview | |
parent | aa15d6016fee6009493ff789de405e12754de06c (diff) |
Additional fix for EXT-2137-[BSI] Copy/pasted text chat logs are now much harder to read or post-process.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
-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 b7cd41cf6c..d1922cfd6e 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -336,7 +336,7 @@ LLView* LLChatHistory::getHeader(const LLChat& chat,const LLStyle::Params& style void LLChatHistory::appendWidgetMessage(const LLChat& chat, LLStyle::Params& style_params) { LLView* view = NULL; - std::string view_text = "\n[" + formatCurrentTime() + "]:[" + chat.mFromName + "] ";; + std::string view_text = "\n[" + formatCurrentTime() + "] " + chat.mFromName + ": "; LLInlineViewSegment::Params p; p.force_newline = true; |