diff options
| author | Runitai <> | 2010-01-11 11:24:04 -0600 |
|---|---|---|
| committer | Runitai <> | 2010-01-11 11:24:04 -0600 |
| commit | 78cb4204a471129a3f3486d33cf115de816de36c (patch) | |
| tree | bd2d8ea33a1c9d8b2893a1e8efc480d5bb87dc3a /indra/newview/llchathistory.cpp | |
| parent | 2a00a16f57daf7c3f99b0374901c03644a5b5f1b (diff) | |
| parent | fddc7d856e420b24e67f1f20af7bc45817a1a8fb (diff) | |
Merge
Diffstat (limited to 'indra/newview/llchathistory.cpp')
| -rw-r--r-- | indra/newview/llchathistory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index dac3280575..cda3e3a419 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -576,10 +576,10 @@ void LLChatHistory::appendMessage(const LLChat& chat, const bool use_plain_text_ style_params.font.style = "ITALIC"; if (chat.mFromName.size() > 0) - mEditor->appendText(chat.mFromName + " ", TRUE, style_params); + mEditor->appendText(chat.mFromName, TRUE, style_params); // Ensure that message ends with NewLine, to avoid losing of new lines // while copy/paste from text chat. See EXT-3263. - mEditor->appendText(chat.mText.substr(4) + NEW_LINE, FALSE, style_params); + mEditor->appendText(chat.mText.substr(3) + NEW_LINE, FALSE, style_params); } else { |
