diff options
| -rw-r--r-- | indra/newview/llvovolume.cpp | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 1ee0811ba6..367912f45e 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -1134,6 +1134,20 @@ void LLVOVolume::regenFaces()  		facep->setTEOffset(i);  		facep->setTexture(getTEImage(i));  		facep->setViewerObject(this); +		 +		// If the face had media on it, this will have broken the link between the LLViewerMediaTexture and the face. +		// Re-establish the link. +		if(mMediaImplList.size() > i) +		{ +			if(mMediaImplList[i]) +			{ +				LLViewerMediaTexture* media_tex = LLViewerTextureManager::findMediaTexture(mMediaImplList[i]->getMediaTextureID()) ; +				if(media_tex) +				{ +					media_tex->addMediaToFace(facep) ; +				} +			} +		}  	}  	if (!count_changed)  | 
