diff options
author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-07-07 21:02:05 +0300 |
---|---|---|
committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-07-07 21:02:05 +0300 |
commit | 4132632cbe6f8755db469c55d1a598b74cadefd8 (patch) | |
tree | 9f386c03bdcf51b4f128824714a5796a96b99656 /indra/newview | |
parent | 840e33e41e07777473617a0b3320b5a38cba8670 (diff) |
EXT-8254 FIXED Enabled texture/color selection when editing non-copyable clothing items.
Reviewed by Nyx at https://codereview.productengine.com/secondlife/r/707/
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llpaneleditwearable.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llpaneleditwearable.cpp b/indra/newview/llpaneleditwearable.cpp index 26f0b3f48f..14f05bdb17 100644 --- a/indra/newview/llpaneleditwearable.cpp +++ b/indra/newview/llpaneleditwearable.cpp @@ -963,8 +963,7 @@ void LLPanelEditWearable::updatePanelPickerControls(LLWearableType::EType type) for_each_picker_ctrl_entry <LLColorSwatchCtrl> (panel, type, boost::bind(update_color_swatch_ctrl, this, _1, _2)); for_each_picker_ctrl_entry <LLTextureCtrl> (panel, type, boost::bind(update_texture_ctrl, this, _1, _2)); } - - if (!is_modifiable || !is_copyable) + else { // Disable controls for_each_picker_ctrl_entry <LLColorSwatchCtrl> (panel, type, boost::bind(set_enabled_color_swatch_ctrl, false, _1, _2)); |