diff options
| author | Graham Madarasz (Graham) <graham@lindenlab.com> | 2013-04-09 09:39:57 -0700 | 
|---|---|---|
| committer | Graham Madarasz (Graham) <graham@lindenlab.com> | 2013-04-09 09:39:57 -0700 | 
| commit | 2a220ca9eb22f953073c6396167dbd48648fe5f9 (patch) | |
| tree | 2eca53fb5a99e356a95e2b20a014cea36456b02d | |
| parent | f7b7f4a5fb35b1d04a975ddd91c62062dee075cc (diff) | |
NORSPEC-84 fix alpha mode UI appearing when coming back from media mode
| -rw-r--r-- | 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 7a9087333c..9af4bed918 100644 --- a/indra/newview/llpanelface.cpp +++ b/indra/newview/llpanelface.cpp @@ -2005,6 +2005,10 @@ void LLPanelFace::onCommitMaterialsMedia(LLUICtrl* ctrl, void* userdata)  	self->getChildView("bumpyOffsetU")->setEnabled(texParmsEnable);  	self->getChildView("bumpyOffsetV")->setEnabled(texParmsEnable);  	self->getChildView("checkbox planar align")->setEnabled(texParmsEnable); + +	// Needed to handle transitions to/from media mode +	// NORSPEC-84 +	updateAlphaControls(ctrl,userdata);  }  // static | 
