From 8a73610997d1236904c24ceb80f39e916336ef5a Mon Sep 17 00:00:00 2001 From: Dave Parks Date: Thu, 4 Apr 2013 00:22:29 -0500 Subject: NORSPEC-80 Fix for mask cutoff UI showing up in Shininess context --- indra/newview/llpanelface.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp index 43001e7d2c..c8c71b425d 100644 --- a/indra/newview/llpanelface.cpp +++ b/indra/newview/llpanelface.cpp @@ -1957,8 +1957,16 @@ void LLPanelFace::updateAlphaControls(LLUICtrl* ctrl, void* userdata) { return; } + LLComboBox* comboMaterials = self->getChild("combobox mattype"); + if (!comboMaterials) + { + return; + } + U32 alpha_value = comboAlphaMode->getCurrentIndex(); - bool show_alphactrls = (alpha_value == ALPHAMODE_MASK); // Alpha masking + U32 mattype = comboMaterials->getCurrentIndex(); + + bool show_alphactrls = (alpha_value == ALPHAMODE_MASK) && (mattype == 0); // Alpha masking self->getChildView("label maskcutoff")->setVisible(show_alphactrls); self->getChildView("maskcutoff")->setVisible(show_alphactrls); } -- cgit v1.2.3