diff options
| author | Leyla Farazha <leyla@lindenlab.com> | 2011-04-12 15:06:21 -0700 | 
|---|---|---|
| committer | Leyla Farazha <leyla@lindenlab.com> | 2011-04-12 15:06:21 -0700 | 
| commit | 241350f8455a262eca8f1195b6abfc167674dca6 (patch) | |
| tree | 3e1fe808916e8b5af24309c81903cead27dc628d | |
| parent | 786c909b4940b76d30fa31021e4d3efefdf1b116 (diff) | |
SH-1205 Lock out ability to change sculpt stitching type or sculpt map when sculpt stitching type
| -rw-r--r-- | indra/newview/llpanelobject.cpp | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/indra/newview/llpanelobject.cpp b/indra/newview/llpanelobject.cpp index f135fcbed6..64af6c2157 100644 --- a/indra/newview/llpanelobject.cpp +++ b/indra/newview/llpanelobject.cpp @@ -1117,23 +1117,23 @@ void LLPanelObject::getState( )  				mSculptTypeRevert    = sculpt_params->getSculptType();  			} +			U8 sculpt_type = sculpt_params->getSculptType(); +			U8 sculpt_stitching = sculpt_type & LL_SCULPT_TYPE_MASK; +			BOOL sculpt_invert = sculpt_type & LL_SCULPT_FLAG_INVERT; +			BOOL sculpt_mirror = sculpt_type & LL_SCULPT_FLAG_MIRROR; +			isMesh = (sculpt_stitching == LL_SCULPT_TYPE_MESH); +  			LLTextureCtrl*  mTextureCtrl = getChild<LLTextureCtrl>("sculpt texture control");  			if(mTextureCtrl)  			{  				mTextureCtrl->setTentative(FALSE); -				mTextureCtrl->setEnabled(editable); +				mTextureCtrl->setEnabled(editable && !isMesh);  				if (editable)  					mTextureCtrl->setImageAssetID(sculpt_params->getSculptTexture());  				else  					mTextureCtrl->setImageAssetID(LLUUID::null);  			} -			U8 sculpt_type = sculpt_params->getSculptType(); -			U8 sculpt_stitching = sculpt_type & LL_SCULPT_TYPE_MASK; -			BOOL sculpt_invert = sculpt_type & LL_SCULPT_FLAG_INVERT; -			BOOL sculpt_mirror = sculpt_type & LL_SCULPT_FLAG_MIRROR; -			isMesh = (sculpt_stitching == LL_SCULPT_TYPE_MESH); -			  			mComboBaseType->setEnabled(!isMesh);  			if (mCtrlSculptType) | 
