diff options
| author | seth_productengine <none@none> | 2011-07-05 21:21:26 +0300 | 
|---|---|---|
| committer | seth_productengine <none@none> | 2011-07-05 21:21:26 +0300 | 
| commit | 5f17754a39c94c90be98313d52efab18e3cfc789 (patch) | |
| tree | 0c87e8333299f47b75294de2cc3b0577d525b300 | |
| parent | b466e95b4de2b93c5ed8e1947284371f3e89c99c (diff) | |
SH-1965 FIXED recalculating physics in model upload wizard before requesting the upload fee.
| -rw-r--r-- | indra/newview/llfloatermodelwizard.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llfloatermodelwizard.cpp b/indra/newview/llfloatermodelwizard.cpp index ae6b1dd85b..7efcdb6145 100644 --- a/indra/newview/llfloatermodelwizard.cpp +++ b/indra/newview/llfloatermodelwizard.cpp @@ -133,6 +133,10 @@ void LLFloaterModelWizard::setState(int state)  		if (mLastEnabledState < state)  		{  			mModelPreview->setPhysicsFromLOD(1); + +			// Trigger the recalculate physics when first entering +			// the Physics step. +			onClickRecalculatePhysics();  		}  		mModelPreview->mViewOption["show_physics"] = true;  | 
