diff options
author | Matthew Breindel (Falcon) <falcon@lindenlab.com> | 2010-09-15 13:24:15 -0700 |
---|---|---|
committer | Matthew Breindel (Falcon) <falcon@lindenlab.com> | 2010-09-15 13:24:15 -0700 |
commit | c7624892b25824e80c79a9c5d7c3ae3f23410fc6 (patch) | |
tree | 0310a4770ecec1ca485b916352d28e77330a0567 /indra/newview/llfloatermodelpreview.cpp | |
parent | b04d761a9c64da5a9fadd6accba1d91dcdbc2dd5 (diff) |
Fixed threading-related crash that would occur when decomposition completed.
Diffstat (limited to 'indra/newview/llfloatermodelpreview.cpp')
-rw-r--r-- | indra/newview/llfloatermodelpreview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloatermodelpreview.cpp b/indra/newview/llfloatermodelpreview.cpp index a78d0075c2..85035fb961 100644 --- a/indra/newview/llfloatermodelpreview.cpp +++ b/indra/newview/llfloatermodelpreview.cpp @@ -3409,7 +3409,7 @@ void LLFloaterModelPreview::onModelDecompositionComplete(LLModel* model, std::ve { sInstance->mModelPreview->mPhysicsMesh[model] = physics_mesh; - sInstance->mModelPreview->mResourceCost = sInstance->mModelPreview->calcResourceCost(); + sInstance->mModelPreview->mDirty = true; } } |