diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp index 8f7cac1f61ffd8f88ebea7b04d2fccef6858d02e..62c3f401bf9c9ce29cb1655a923e7120c306b640 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -588,6 +588,11 @@ void LLView::onVisibilityChange ( BOOL new_visibility ) BOOL log_visibility_change = LLViewerEventRecorder::instance().getLoggingStatus(); BOOST_FOREACH(LLView* viewp, mChildList) { + if (!viewp) + { + continue; + } + // only views that are themselves visible will have their overall visibility affected by their ancestors old_visibility=viewp->getVisible();