diff options
author | Neal Orman <nyx@lindenlab.com> | 2009-07-14 15:24:37 +0000 |
---|---|---|
committer | Neal Orman <nyx@lindenlab.com> | 2009-07-14 15:24:37 +0000 |
commit | 4447005b72aaebd8446c183ac2a3dc8432f6eb0f (patch) | |
tree | 9af16a43c78cbf17c875d37dfb82f49cd0b0619c | |
parent | 56e045547951cdad356da38ba3da4251d58d3fb8 (diff) |
DEV-34299 - VWR-13996: Avatars are invisible, except for attachments
One-line fix for a very old bug. Bug was hunted and fixed by resident Aleric Inglewood. Code reviewed by Nyx. Patch is a one-off, de minimis change. Contact Nyx if any problems with this code.
-Nyx
-rw-r--r-- | doc/contributions.txt | 1 | ||||
-rw-r--r-- | indra/newview/llspatialpartition.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt index a4647f005d..c18d3eb171 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -44,6 +44,7 @@ Aleric Inglewood VWR-10001 VWR-10759 VWR-10837 + VWR-13996 Ales Beaumont VWR-9352 Alissa Sabre diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index 435d010de3..e45e1feffd 100644 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -577,7 +577,7 @@ void LLSpatialPartition::rebuildGeom(LLSpatialGroup* group) return; } - if (group->changeLOD()) + if (!LLPipeline::sSkipUpdate && group->changeLOD()) { group->mLastUpdateDistance = group->mDistance; group->mLastUpdateViewAngle = group->mViewAngle; |