diff options
author | James Cook <james@lindenlab.com> | 2010-05-19 15:07:25 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-05-19 15:07:25 -0700 |
commit | 32f9bd0bcedfa2ba858448c7211a681d81b85b97 (patch) | |
tree | 57ba157b82557ec3e098b2308200fbc4bc84a940 | |
parent | 415cc68810a17bbe29759d6914746b0b9eb5d8a5 (diff) |
DEV-50013 Add 2px line padding to name tags
Should match final requests from Rhett. Reviewed with Leyla
-rw-r--r-- | indra/newview/llhudnametag.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/indra/newview/llhudnametag.cpp b/indra/newview/llhudnametag.cpp index e444fc88eb..2cb333a717 100644 --- a/indra/newview/llhudnametag.cpp +++ b/indra/newview/llhudnametag.cpp @@ -60,7 +60,7 @@ const F32 SPRING_STRENGTH = 0.7f; const F32 RESTORATION_SPRING_TIME_CONSTANT = 0.1f; const F32 HORIZONTAL_PADDING = 16.f; const F32 VERTICAL_PADDING = 12.f; -const F32 LINE_PADDING = 1; // aka "leading" +const F32 LINE_PADDING = 3.f; // aka "leading" const F32 BUFFER_SIZE = 2.f; const F32 MIN_EDGE_OVERLAP = 3.f; const F32 HUD_TEXT_MAX_WIDTH = 190.f; @@ -460,7 +460,7 @@ void LLHUDNameTag::renderText(BOOL for_select) LLUI::popMatrix(); } - F32 y_offset = (F32)mOffsetY - 2; // JAMESDEBUG + F32 y_offset = (F32)mOffsetY; // Render label { @@ -807,6 +807,12 @@ void LLHUDNameTag::updateSize() ++iter; } + // Don't want line spacing under the last line + if (height > 0.f) + { + height -= LINE_PADDING; + } + iter = mLabelSegments.begin(); while (iter != mLabelSegments.end()) { |