From 37f8a6e00bc4197de85aea1594cf74f17987c101 Mon Sep 17 00:00:00 2001 From: Siana Gearz Date: Sun, 5 Jun 2011 19:06:54 +0200 Subject: [PATCH] Applied patch for #37 by anonymous --- indra/newview/app_settings/settings_ascent.xml | 15 +++++++++++++-- indra/newview/llimpanel.cpp | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/indra/newview/app_settings/settings_ascent.xml b/indra/newview/app_settings/settings_ascent.xml index 14fa6475f..50efda805 100644 --- a/indra/newview/app_settings/settings_ascent.xml +++ b/indra/newview/app_settings/settings_ascent.xml @@ -2,8 +2,19 @@ - - SianaRenderOmitBlankVBO + + SingularityBoldGroupModerator + + Comment + Should group moderator chat be displayed in bold + Persist + 1 + Type + Boolean + Value + 1 + + SianaRenderOmitBlankVBO Comment Optimization: omit prefilling VBOs with zeroes. Default: OFF diff --git a/indra/newview/llimpanel.cpp b/indra/newview/llimpanel.cpp index cef6f9daa..110d3a708 100644 --- a/indra/newview/llimpanel.cpp +++ b/indra/newview/llimpanel.cpp @@ -1668,7 +1668,7 @@ void LLFloaterIMPanel::addHistoryLine(const std::string &utf8msg, LLColor4 incol } //Kadah - Bold group mods chat. Doesnt work on the first msg of the session, dont have speakers list yet? - if (isModerator(source)) + if (gSavedSettings.getBOOL("SingularityBoldGroupModerator") && isModerator(source)) { mHistoryEditor->appendColoredText(utf8msg.substr(0,1), false, prepend_newline, color); LLStyleSP style(new LLStyle);