diff options
Diffstat (limited to 'indra/llui/llmenugl.cpp')
-rw-r--r-- | indra/llui/llmenugl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index f5dcae5787..2cae50bd04 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -497,7 +497,7 @@ void LLMenuItemGL::draw( void ) U8 font_style = mStyle; if (LLMenuItemGL::sDropShadowText && getEnabled() && !mDrawTextDisabled ) { - font_style |= LLFontGL::DROP_SHADOW; + font_style |= LLFontGL::DROP_SHADOW_SOFT; } if ( getEnabled() && getHighlight() ) @@ -1728,7 +1728,7 @@ void LLMenuItemBranchDownGL::draw( void ) U8 font_style = mStyle; if (LLMenuItemGL::sDropShadowText && getEnabled() && !mDrawTextDisabled ) { - font_style |= LLFontGL::DROP_SHADOW; + font_style |= LLFontGL::DROP_SHADOW_SOFT; } LLColor4 color; |