diff options
author | Richard Linden <none@none> | 2010-07-29 11:53:31 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-07-29 11:53:31 -0700 |
commit | 4431d603703f9dc2ecb62f889921d9e65b092623 (patch) | |
tree | b984e4adfc9acde8227138664a8b18036ec4d530 | |
parent | c96caed698afb38c50db229fff35fa8b91e40f83 (diff) |
fix for truncated text rendering
-rw-r--r-- | indra/llrender/llfontgl.cpp | 2 |
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? |