diff options
author | seth_productengine <none@none> | 2011-04-14 18:42:25 +0300 |
---|---|---|
committer | seth_productengine <none@none> | 2011-04-14 18:42:25 +0300 |
commit | 40077972dd96298e24fa663a3bef78e951c5d20d (patch) | |
tree | 05ab0a79c027be3c02cc9ca20228543b5e903758 /indra/newview | |
parent | 88a7262340f2fc5085f4ac6600790518d01292d6 (diff) |
STORM-1111 FIXED Disabled re-loging the nearby chat history to file upon processing the chat style update.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llnearbychat.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llnearbychat.cpp b/indra/newview/llnearbychat.cpp index 572eeb8fc7..03ebc344f1 100644 --- a/indra/newview/llnearbychat.cpp +++ b/indra/newview/llnearbychat.cpp @@ -250,9 +250,13 @@ void LLNearbyChat::getAllowedRect(LLRect& rect) void LLNearbyChat::updateChatHistoryStyle() { mChatHistory->clear(); + + LLSD do_not_log; + do_not_log["do_not_log"] = true; for(std::vector<LLChat>::iterator it = mMessageArchive.begin();it!=mMessageArchive.end();++it) { - addMessage(*it,false); + // Update the messages without re-writing them to a log file. + addMessage(*it,false, do_not_log); } } |