Skip to content
Snippets Groups Projects
Commit 6da22957 authored by Steven Bennetts's avatar Steven Bennetts
Browse files

Small change to disable echoing chat and IM to the "console" (2d text overlay...

Small change to disable echoing chat and IM to the "console" (2d text overlay in the 3D window) in 2.0.
parent 8c6748bd
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment