diff options
author | Jonathan Yap <none@none> | 2013-12-11 10:41:28 -0500 |
---|---|---|
committer | Jonathan Yap <none@none> | 2013-12-11 10:41:28 -0500 |
commit | 81d1d427f194c969031c334151df0dda231331b8 (patch) | |
tree | ece3e84dabab4eecef275e351b9c3ab5fceb23fe | |
parent | 1a9b9f1bd1b5f64b35b9ce6eff458cdb7a79fe6e (diff) |
OPEN-113 Build > Upload > Model > Calculate weights & fee is not disabled in OS built viewers
-rwxr-xr-x | doc/contributions.txt | 1 | ||||
-rwxr-xr-x | indra/newview/llfloatermodelpreview.cpp | 11 |
2 files changed, 10 insertions, 2 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt index 2f9d0c2c86..ccc62f890e 100755 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -674,6 +674,7 @@ Jonathan Yap OPEN-161 STORM-1953 STORM-1957 + OPEN-113 Kadah Coba STORM-1060 STORM-1843 diff --git a/indra/newview/llfloatermodelpreview.cpp b/indra/newview/llfloatermodelpreview.cpp index 19cec55837..1699fb4e8d 100755 --- a/indra/newview/llfloatermodelpreview.cpp +++ b/indra/newview/llfloatermodelpreview.cpp @@ -535,9 +535,16 @@ BOOL LLFloaterModelPreview::postBuild() mUploadBtn = getChild<LLButton>("ok_btn"); mCalculateBtn = getChild<LLButton>("calculate_btn"); - mCalculateBtn->setClickedCallback(boost::bind(&LLFloaterModelPreview::onClickCalculateBtn, this)); + if (LLConvexDecomposition::isFunctional()) + { + mCalculateBtn->setClickedCallback(boost::bind(&LLFloaterModelPreview::onClickCalculateBtn, this)); - toggleCalculateButton(true); + toggleCalculateButton(true); + } + else + { + mCalculateBtn->setEnabled(false); + } return TRUE; } |