From 05e9d6e13f157de70a2b63dc341576a959bd9f4c Mon Sep 17 00:00:00 2001 From: Drake Arconis <drake@alchemyviewer.org> Date: Mon, 15 Jun 2015 17:21:26 -0400 Subject: [PATCH] Fix more issues with bump and shiny comboboxes --- indra/newview/llpanelface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp index b8c8d5d854..b7698f7535 100755 --- a/indra/newview/llpanelface.cpp +++ b/indra/newview/llpanelface.cpp @@ -1366,7 +1366,7 @@ void LLPanelFace::updateShinyControls(bool is_setting_texture, bool mess_with_sh { if (!comboShiny->itemExists(USE_TEXTURE)) { - comboShiny->add(USE_TEXTURE); + comboShiny->add(USE_TEXTURE, LLSD(SHINY_TEXTURE)); } comboShiny->setSimple(USE_TEXTURE); } @@ -1414,7 +1414,7 @@ void LLPanelFace::updateBumpyControls(bool is_setting_texture, bool mess_with_co { if (!comboBumpy->itemExists(USE_TEXTURE)) { - comboBumpy->add(USE_TEXTURE); + comboBumpy->add(USE_TEXTURE, LLSD(BUMPY_TEXTURE)); } comboBumpy->setSimple(USE_TEXTURE); } -- GitLab