diff options
| author | Oz Linden <oz@lindenlab.com> | 2011-09-22 08:52:21 -0400 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2011-09-22 08:52:21 -0400 |
| commit | 627bd3c5b998b6a743b7b412235bc5a287dadfc4 (patch) | |
| tree | c5b14803f81a8fb068e2af72807d1cc8dbb0c02f /indra/newview/llpanelobject.cpp | |
| parent | 4c25b7398b1c1fcdd155f4021a6f63b1bff88cdb (diff) | |
| parent | 2091ce3ae745b15c979e78f853eb0d1777efff18 (diff) | |
merge changes for storm-1607
Diffstat (limited to 'indra/newview/llpanelobject.cpp')
| -rw-r--r-- | indra/newview/llpanelobject.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/indra/newview/llpanelobject.cpp b/indra/newview/llpanelobject.cpp index c222bbb191..1f77e7a602 100644 --- a/indra/newview/llpanelobject.cpp +++ b/indra/newview/llpanelobject.cpp @@ -1112,7 +1112,16 @@ void LLPanelObject::getState( ) if (mCtrlSculptType) { - mCtrlSculptType->setCurrentByIndex(sculpt_stitching); + if (sculpt_stitching == LL_SCULPT_TYPE_NONE) + { + // since 'None' is no longer an option in the combo box + // use 'Plane' as an equivalent sculpt type + mCtrlSculptType->setSelectedByValue(LLSD(LL_SCULPT_TYPE_PLANE), true); + } + else + { + mCtrlSculptType->setSelectedByValue(LLSD(sculpt_stitching), true); + } mCtrlSculptType->setEnabled(editable && !isMesh); } @@ -1749,7 +1758,7 @@ void LLPanelObject::sendSculpt() U8 sculpt_type = 0; if (mCtrlSculptType) - sculpt_type |= mCtrlSculptType->getCurrentIndex(); + sculpt_type |= mCtrlSculptType->getValue().asInteger(); bool enabled = sculpt_type != LL_SCULPT_TYPE_MESH; |
