summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Linden <none@none>2010-07-29 11:53:31 -0700
committerRichard Linden <none@none>2010-07-29 11:53:31 -0700
commit4431d603703f9dc2ecb62f889921d9e65b092623 (patch)
treeb984e4adfc9acde8227138664a8b18036ec4d530
parentc96caed698afb38c50db229fff35fa8b91e40f83 (diff)
fix for truncated text rendering
-rw-r--r--indra/llrender/llfontgl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llfontgl.cpp b/indra/llrender/llfontgl.cpp
index c0297eae3e..eaff42aaeb 100644
--- a/indra/llrender/llfontgl.cpp
+++ b/indra/llrender/llfontgl.cpp
@@ -369,7 +369,7 @@ S32 LLFontGL::render(const LLWString &wstr, S32 begin_offset, F32 x, F32 y, cons
if (right_x)
{
- *right_x = cur_x / sScaleX;
+ *right_x = (cur_x - origin.mV[VX]) / sScaleX;
}
//FIXME: add underline as glyph?