diff options
author | Jacek Antonelli | 2009-04-06 01:29:22 -0500 |
---|---|---|
committer | Jacek Antonelli | 2009-04-06 01:29:22 -0500 |
commit | e06d504a68a72c321794b5e8740ccefcc45f654b (patch) | |
tree | 24d844d82b77957e763e6bc9a3103e29aa77f5f3 /linden/indra/newview/llfloaterchat.cpp | |
parent | Apply saved MediaDebugLevel at media init time. (diff) | |
parent | Cleaned up logic for bad streams (diff) | |
download | meta-impy-e06d504a68a72c321794b5e8740ccefcc45f654b.zip meta-impy-e06d504a68a72c321794b5e8740ccefcc45f654b.tar.gz meta-impy-e06d504a68a72c321794b5e8740ccefcc45f654b.tar.bz2 meta-impy-e06d504a68a72c321794b5e8740ccefcc45f654b.tar.xz |
Merge commit 'mccabe/gst-revamp' into gst-revamp
Diffstat (limited to 'linden/indra/newview/llfloaterchat.cpp')
-rw-r--r-- | linden/indra/newview/llfloaterchat.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/newview/llfloaterchat.cpp b/linden/indra/newview/llfloaterchat.cpp index a626ad3..14f9a10 100644 --- a/linden/indra/newview/llfloaterchat.cpp +++ b/linden/indra/newview/llfloaterchat.cpp | |||
@@ -385,7 +385,11 @@ void LLFloaterChat::addChat(const LLChat& chat, | |||
385 | text_color = gSavedSettings.getColor("IMChatColor"); | 385 | text_color = gSavedSettings.getColor("IMChatColor"); |
386 | size = INSTANT_MSG_SIZE; | 386 | size = INSTANT_MSG_SIZE; |
387 | } | 387 | } |
388 | gConsole->addLine(chat.mText, size, text_color); | 388 | // We display anything if it's not an IM. If it's an IM, check pref... |
389 | if ( !from_instant_message || gSavedSettings.getBOOL("IMInChatHistory") ) | ||
390 | { | ||
391 | gConsole->addLine(chat.mText, size, text_color); | ||
392 | } | ||
389 | } | 393 | } |
390 | 394 | ||
391 | if(from_instant_message && gSavedPerAccountSettings.getBOOL("LogChatIM")) | 395 | if(from_instant_message && gSavedPerAccountSettings.getBOOL("LogChatIM")) |