diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llstatusbar.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/linden/indra/newview/llstatusbar.cpp b/linden/indra/newview/llstatusbar.cpp index d08d3da..4998981 100644 --- a/linden/indra/newview/llstatusbar.cpp +++ b/linden/indra/newview/llstatusbar.cpp | |||
@@ -227,12 +227,15 @@ void LLStatusBar::draw() | |||
227 | { | 227 | { |
228 | refresh(); | 228 | refresh(); |
229 | 229 | ||
230 | /*static LLColor4* sColorDropShadow = rebind_llcontrol<LLColor4>("ColorDropShadow", LLUI::sColorsGroup, true); | ||
231 | static S32* sDropShadowFloater = rebind_llcontrol<S32>("DropShadowFloater", LLUI::sConfigGroup, true); | ||
232 | |||
230 | if (isBackgroundVisible()) | 233 | if (isBackgroundVisible()) |
231 | { | 234 | { |
232 | gl_drop_shadow(0, getRect().getHeight(), getRect().getWidth(), 0, | 235 | gl_drop_shadow(0, getRect().getHeight(), getRect().getWidth(), 0, |
233 | LLUI::sColorsGroup->getColor("ColorDropShadow"), | 236 | (*sColorDropShadow), |
234 | LLUI::sConfigGroup->getS32("DropShadowFloater") ); | 237 | (*sDropShadowFloater) ); |
235 | } | 238 | }*/ |
236 | LLPanel::draw(); | 239 | LLPanel::draw(); |
237 | } | 240 | } |
238 | 241 | ||