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);