From 73bc656e63dace4a1e891a4546c40c94349a0906 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Fri, 20 Jul 2012 12:04:24 -0500 Subject: [PATCH] Flexis were not being reliably initialized before being drawn. --- indra/newview/llflexibleobject.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/indra/newview/llflexibleobject.cpp b/indra/newview/llflexibleobject.cpp index 5ff314865..8b0fd109f 100644 --- a/indra/newview/llflexibleobject.cpp +++ b/indra/newview/llflexibleobject.cpp @@ -346,7 +346,9 @@ void LLVolumeImplFlexible::doIdleUpdate(LLAgent &agent, LLWorld &world, const F6 gPipeline.markRebuild(drawablep, LLDrawable::REBUILD_POSITION, FALSE); } } - } + } + if(!mInitialized) + updateRenderRes(); } }