diff options
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llpanelvolume.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/indra/newview/llpanelvolume.cpp b/indra/newview/llpanelvolume.cpp index cd36c8f3f2..735eaa423d 100644 --- a/indra/newview/llpanelvolume.cpp +++ b/indra/newview/llpanelvolume.cpp @@ -400,7 +400,10 @@ void LLPanelVolume::getState( ) } } - gAgentAvatarp->updateMeshVisibility(); + if (gAgentAvatarp) + { + gAgentAvatarp->updateMeshVisibility(); + } } @@ -990,7 +993,10 @@ void LLPanelVolume::onCommitAnimatedMeshCheckbox(LLUICtrl *, void*) } } - gAgentAvatarp->updateMeshVisibility(); + if (gAgentAvatarp) + { + gAgentAvatarp->updateMeshVisibility(); + } } } |