diff options
| author | Vadim ProductEngine <vsavchuk@productengine.com> | 2012-01-26 19:37:53 +0200 | 
|---|---|---|
| committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2012-01-26 19:37:53 +0200 | 
| commit | 886946d699880e90b8d34d8b8c2e88d59929d4df (patch) | |
| tree | a4106f9673eaad53f4a2faed6b2a7de1a9d7c579 | |
| parent | 9429d5d2f23c28c47b3f87774e811213cb9e2997 (diff) | |
EXP-1839 FIXED Fixed treating normal nearby speakers as text-only chat participants which led to marking muted avatars as non-muted.
| -rw-r--r-- | indra/newview/llparticipantlist.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/indra/newview/llparticipantlist.cpp b/indra/newview/llparticipantlist.cpp index c1b931d7e8..183bc7b610 100644 --- a/indra/newview/llparticipantlist.cpp +++ b/indra/newview/llparticipantlist.cpp @@ -390,7 +390,10 @@ void LLParticipantList::onAvatarListRefreshed(LLUICtrl* ctrl, const LLSD& param)  		{  			const LLPointer<LLSpeaker>& speakerp = *it; -			update_speaker_indicator(list, speakerp->mID, speakerp->mModeratorMutedVoice); +			if (speakerp->mStatus == LLSpeaker::STATUS_TEXT_ONLY) +			{ +				update_speaker_indicator(list, speakerp->mID, speakerp->mModeratorMutedVoice); +			}  		}  	}  } | 
