Skip to content
Snippets Groups Projects
Commit 9c8f6ba6 authored by Leslie Linden's avatar Leslie Linden
Browse files

Modified CRASH assert to not occur in release mode per Richard

parent 990b5aea
No related branches found
No related tags found
No related merge requests found
...@@ -282,7 +282,8 @@ void LLView::moveChildToBackOfTabGroup(LLUICtrl* child) ...@@ -282,7 +282,8 @@ void LLView::moveChildToBackOfTabGroup(LLUICtrl* child)
// virtual // virtual
bool LLView::addChild(LLView* child, S32 tab_group) 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) if (!child)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment