diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp
index 1529381773609f5239e432356f1a52db83b64235..542f57ee5fd26940679b14bd2d6d6a7d985b30b9 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)
 	{