MAINT-5837 FIXED Hovering text is displayed when the avatar is blocked

Mnikolenko ProductEngine 2015-11-17 11:27:24 +02:00
parent 2999933e4e
commit c4a3eb3c42
1 changed files with 7 additions and 1 deletions

View File

@ -5043,7 +5043,13 @@ void LLViewerObject::updateText()
{
if (mText.notNull())
{
LLVector3 up_offset(0,0,0);
LLVOAvatar* avatar = getAvatar();
if (avatar)
{
mText->setHidden(avatar->isInMuteList());
}
LLVector3 up_offset(0,0,0);
up_offset.mV[2] = getScale().mV[VZ]*0.6f;
if (mDrawable.notNull())