diff options
author | richard <none@none> | 2009-12-08 14:34:44 -0800 |
---|---|---|
committer | richard <none@none> | 2009-12-08 14:34:44 -0800 |
commit | 08233e283d8d0e377481dd58e382921602ec1d7e (patch) | |
tree | b0af35b8f61c1c4d5fb5954563e76c24532f3ea6 | |
parent | 9aa12417cba81ee1dd0bdc63041abb98091a7a95 (diff) |
added fading back to icons in text widgets
-rw-r--r-- | indra/llui/lltextbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index f7e64aaf85..2a9515171a 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -2244,7 +2244,7 @@ F32 LLNormalTextSegment::draw(S32 start, S32 end, S32 selection_start, S32 selec // Center the image vertically S32 image_bottom = draw_rect.getCenterY() - (style_image_height/2); image->draw(draw_rect.mLeft, image_bottom, - style_image_width, style_image_height); + style_image_width, style_image_height, color); } return drawClippedSegment( getStart() + start, getStart() + end, selection_start, selection_end, draw_rect); |