summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2010-07-06 18:13:46 -0400
committerNyx (Neal Orman) <nyx@lindenlab.com>2010-07-06 18:13:46 -0400
commitfcfaa698215c7d8516c5bc175dc9dd19996f32ca (patch)
tree2af0d4450cbf34a337534cb7ced715f2f055535a
parent7de36b3d4217f5ceee8b46a59983229b7af35981 (diff)
EXT-8020 FIX outfit textures are blurry on opening outfit editor
We believe this fix should help with the blurry textures - we weren't updating our local bake of your avatars' appearance. Added a line to trigger this refresh. Code reviewed by Seraph
-rw-r--r--indra/newview/llagentcamera.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llagentcamera.cpp b/indra/newview/llagentcamera.cpp
index ec3c7452e5..c70bbb985f 100644
--- a/indra/newview/llagentcamera.cpp
+++ b/indra/newview/llagentcamera.cpp
@@ -2310,6 +2310,7 @@ void LLAgentCamera::changeCameraToCustomizeAvatar()
setAnimationDuration(turn_motion->getDuration() + CUSTOMIZE_AVATAR_CAMERA_ANIM_SLOP);
}
+ gAgentAvatarp->invalidateAll();
gAgentAvatarp->updateMeshTextures();
}
}