diff options
| -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); +			}  		}  	}  } | 
