diff options
Diffstat (limited to 'indra/newview/llpanelface.cpp')
-rwxr-xr-x | indra/newview/llpanelface.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp index 2f6c285a80..d873cab59a 100755 --- a/indra/newview/llpanelface.cpp +++ b/indra/newview/llpanelface.cpp @@ -1513,6 +1513,10 @@ void LLPanelFace::onSelectColor(const LLSD& data) void LLPanelFace::onCommitMaterialsMedia(LLUICtrl* ctrl, void* userdata) { LLPanelFace* self = (LLPanelFace*) userdata; + LLUUID specmap = getCurrentSpecularMap(); + LLUUID normmap = getCurrentNormalMap(); + self->updateShinyControls(!specmap.isNull(), true); + self->updateBumpyControls(!normmap.isNull(), true); self->updateUI(); } |