aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterchat.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2009-04-06 01:51:38 -0500
committerJacek Antonelli2009-04-06 01:52:15 -0500
commitbcf93cd3a302fd4cc1f8cf82c47a5b863dc2d937 (patch)
tree7b2154384c2d1339c6c030e237e3ea6ba7e19e94 /linden/indra/newview/llfloaterchat.cpp
parentChanged the login splash screen URL. (diff)
parentMerge branch gst-thread into gst-revamp (diff)
downloadmeta-impy-bcf93cd3a302fd4cc1f8cf82c47a5b863dc2d937.zip
meta-impy-bcf93cd3a302fd4cc1f8cf82c47a5b863dc2d937.tar.gz
meta-impy-bcf93cd3a302fd4cc1f8cf82c47a5b863dc2d937.tar.bz2
meta-impy-bcf93cd3a302fd4cc1f8cf82c47a5b863dc2d937.tar.xz
Merge branch 'gst-revamp' into next
Diffstat (limited to 'linden/indra/newview/llfloaterchat.cpp')
-rw-r--r--linden/indra/newview/llfloaterchat.cpp6
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"))