diff options
author | skolb <none@none> | 2009-12-01 18:12:16 -0800 |
---|---|---|
committer | skolb <none@none> | 2009-12-01 18:12:16 -0800 |
commit | 96fa076a05b53d9bf8b488b2d213d4d528120a26 (patch) | |
tree | e89a75d4397ce690cef0d1e8cff85b35027b9ca9 /indra/newview/llvovolume.cpp | |
parent | fc56add7930283a8bc451d96b46749fb82d631d4 (diff) | |
parent | f4e40360e5f3dfd644564e59c65d7935e5f402ee (diff) |
Merge
Diffstat (limited to 'indra/newview/llvovolume.cpp')
-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) |