summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-08-22 14:39:40 -0400
committerOz Linden <oz@lindenlab.com>2013-08-22 14:39:40 -0400
commit1e2a6ee3f440b7d076dc97f3a0628c90195f5386 (patch)
tree5d39d139ed599569fc4d0e55eb7a25a76d8560ee
parentba248b8b5da84b69a20aa3704a64e20907c95958 (diff)
parentbe07694b9cc8d2203cfedc777bcb00021dfa91a1 (diff)
merge changes for maint-2773
-rwxr-xr-xdoc/contributions.txt1
-rwxr-xr-xindra/newview/llviewerobjectlist.cpp10
2 files changed, 7 insertions, 4 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt
index bb4450872f..4572ebf5a5 100755
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -177,6 +177,7 @@ Ansariel Hiller
STORM-1899
STORM-1932
MAINT-2368
+ MAINT-2773
Aralara Rajal
Ardy Lay
STORM-859
diff --git a/indra/newview/llviewerobjectlist.cpp b/indra/newview/llviewerobjectlist.cpp
index 66615657d8..b4e287c446 100755
--- a/indra/newview/llviewerobjectlist.cpp
+++ b/indra/newview/llviewerobjectlist.cpp
@@ -954,15 +954,17 @@ void LLViewerObjectList::update(LLAgent &agent, LLWorld &world)
objectp = *idle_iter;
llassert(objectp->isActive());
objectp->idleUpdate(agent, world, frame_time);
-
- }
+ }
//update flexible objects
LLVolumeImplFlexible::updateClass();
//update animated textures
- LLViewerTextureAnim::updateClass();
- }
+ if (gAnimateTextures)
+ {
+ LLViewerTextureAnim::updateClass();
+ }
+ }