summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorSteven Bennetts <steve@lindenlab.com>2009-08-10 16:05:28 +0000
committerSteven Bennetts <steve@lindenlab.com>2009-08-10 16:05:28 +0000
commit6da22957610c8dcfe1f466375a76861946fb5f6e (patch)
treeca270a703dfeb3474f2f9038aedc01331c3f6a7b /indra
parent8c6748bddb63943c5649096594035fae15619d1e (diff)
Small change to disable echoing chat and IM to the "console" (2d text overlay in the 3D window) in 2.0.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloaterchat.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llfloaterchat.cpp b/indra/newview/llfloaterchat.cpp
index 8fcb7b985f..742cc5c5de 100644
--- a/indra/newview/llfloaterchat.cpp
+++ b/indra/newview/llfloaterchat.cpp
@@ -339,11 +339,14 @@ void LLFloaterChat::addChat(const LLChat& chat,
text_color = LLUIColorTable::instance().getColor("IMChatColor");
size = INSTANT_MSG_SIZE;
}
+ // Disabling the console for 2.0 - SJB
+#if 0
// We display anything if it's not an IM. If it's an IM, check pref...
if ( !from_instant_message || gSavedSettings.getBOOL("IMInChatConsole") )
{
gConsole->addLine(chat.mText, size, text_color);
}
+#endif
}
if(from_instant_message && (gSavedPerAccountSettings.getS32("IMLogOptions")== LOG_BOTH_TOGETHER))