diff options
author | Nyx Linden <nyx@lindenlab.com> | 2013-03-20 12:15:27 -0400 |
---|---|---|
committer | Nyx Linden <nyx@lindenlab.com> | 2013-03-20 12:15:27 -0400 |
commit | 33954bbbe5517a0ad72ffc6bad7cb94985b3bf8b (patch) | |
tree | bfc3b031000007362e22bc8d2c3881f34489d0f9 /indra/newview/llvoavatarself.cpp | |
parent | 626cb6319945f6ff8feee2aec862924581a66056 (diff) | |
parent | 779e132cbfc46a0eda97a0331e39cbc6e686c07b (diff) |
merging in changes from sunshine-stable
Diffstat (limited to 'indra/newview/llvoavatarself.cpp')
-rw-r--r-- | indra/newview/llvoavatarself.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index 6d12cd2f01..9e68378fb8 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -2988,7 +2988,10 @@ void LLVOAvatarSelf::onCustomizeEnd(bool disable_camera_switch) gAgentCamera.resetView(); } - LLAppearanceMgr::instance().updateAppearanceFromCOF(); + if (gAgent.getRegion() && gAgent.getRegion()->getCentralBakeVersion()) + { + LLAppearanceMgr::instance().requestServerAppearanceUpdate(); + } } } |