diff options
author | Don Kjer <don@lindenlab.com> | 2007-05-04 21:57:06 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2007-05-04 21:57:06 +0000 |
commit | 70aaa3e444cf9cb067addcbdde237762bd62fcf4 (patch) | |
tree | 4013659d2335c4681b8c93ea795cf8ccb8aa55cd /indra/llui/llmenugl.cpp | |
parent | 08d746156b56d8b72919af8cbca25609c855ef82 (diff) |
svn merge -r 61148:61343 svn+ssh://svn/svn/linden/branches/maintenance into release
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; |