summaryrefslogtreecommitdiff
path: root/indra/llui/llscrolllistcell.cpp
diff options
context:
space:
mode:
authorYchebotarev ProductEngine <ychebotarev@productengine.com>2010-03-03 11:43:48 +0200
committerYchebotarev ProductEngine <ychebotarev@productengine.com>2010-03-03 11:43:48 +0200
commit0f04222acc13802d1b16dff49e17dc52c1cfae2a (patch)
treebe024a4e2b19b425a99d40fdddd1702d006b6698 /indra/llui/llscrolllistcell.cpp
parent2cc7478e76c2de328cabbce323493bff9f1c94f8 (diff)
fix for normal EXT-1391 Group Info: Avatar name should end with ellipsis if it doesn't fit free space
--HG-- branch : product-engine
Diffstat (limited to 'indra/llui/llscrolllistcell.cpp')
-rw-r--r--indra/llui/llscrolllistcell.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/llscrolllistcell.cpp b/indra/llui/llscrolllistcell.cpp
index 3cc92baa8d..d17be8b94a 100644
--- a/indra/llui/llscrolllistcell.cpp
+++ b/indra/llui/llscrolllistcell.cpp
@@ -185,6 +185,8 @@ LLScrollListText::LLScrollListText(const LLScrollListCell::Params& p)
{
sCount++;
+ mTextWidth = getWidth();
+
// initialize rounded rect image
if (!mRoundedRectImage)
{
@@ -340,7 +342,7 @@ void LLScrollListText::draw(const LLColor4& color, const LLColor4& highlight_col
0,
LLFontGL::NO_SHADOW,
string_chars,
- getWidth(),
+ getTextWidth(),
&right_x,
TRUE);
}