AscentMutedColor is not in gColors, it's a setting, oops. Thanks to LaMont Zuzu for helping me sort this all out.

Fixes muting people who are/having muted people who are in a participant list(active speakers or that << pop out in group chats) that is displayed
This commit is contained in:
Lirusaito
2013-06-18 21:01:11 -04:00
parent 3116e4923c
commit 2c1f14e27f

View File

@@ -249,7 +249,7 @@ void LLParticipantList::refreshSpeakers()
if (speakerp->mStatus == LLSpeaker::STATUS_MUTED)
{
icon_cell->setValue("mute_icon.tga");
static const LLCachedControl<LLColor4> sAscentMutedColor(gColors, "AscentMutedColor");
static const LLCachedControl<LLColor4> sAscentMutedColor("AscentMutedColor");
icon_cell->setColor(speakerp->mModeratorMutedVoice ? /*LLColor4::grey*/sAscentMutedColor : LLColor4(1.f, 71.f / 255.f, 71.f / 255.f, 1.f));
}
else