diff options
author | prep <prep@lindenlab.com> | 2013-03-18 18:10:40 -0400 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2013-03-18 18:10:40 -0400 |
commit | d41e1cf171144a4903f60272dd09076aa5afa43c (patch) | |
tree | 3712bc7448c3a7be18ac5277049faa9fdbc0c352 /indra | |
parent | 24a6c3fda2ba3aa1f40ee31b6f1fc025a6623833 (diff) |
Fix for sh-4014. This was a regression caused by fix for sh-3650.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvoavatarself.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index ea39d44c73..d60ce6799b 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -2989,7 +2989,12 @@ void LLVOAvatarSelf::onCustomizeEnd(bool disable_camera_switch) { gAgentCamera.changeCameraToDefault(); gAgentCamera.resetView(); - } + } + + if (gAgent.getRegion() && gAgent.getRegion()->getCentralBakeVersion()) + { + LLAppearanceMgr::instance().requestServerAppearanceUpdate(); + } } } |