diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llui/llview.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp index 1529381773..542f57ee5f 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -282,7 +282,8 @@ void LLView::moveChildToBackOfTabGroup(LLUICtrl* child)  // virtual  bool LLView::addChild(LLView* child, S32 tab_group)  { -	llassert_always(mInDraw == false); +	// NOTE: Changed this to not crash in release mode +	llassert(mInDraw == false);  	if (!child)  	{ | 
