diff options
author | richard <none@none> | 2009-12-11 13:50:40 -0800 |
---|---|---|
committer | richard <none@none> | 2009-12-11 13:50:40 -0800 |
commit | b8fdf825102cdc260a54565f9ee5e67ab160c207 (patch) | |
tree | d0fca955799a24ffdf98a3acb8887258e465c997 /indra/llui/lldraghandle.cpp | |
parent | 2feb3f538e000a9562c0bea8a0ed19ea04525c6b (diff) |
fix for ellipses not appearing in single line text widgets
fix for ellipses sometimes appearing at end of wrapped line of text
reviewed by James
Diffstat (limited to 'indra/llui/lldraghandle.cpp')
-rw-r--r-- | indra/llui/lldraghandle.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/lldraghandle.cpp b/indra/llui/lldraghandle.cpp index d9b98b1c28..a93c666648 100644 --- a/indra/llui/lldraghandle.cpp +++ b/indra/llui/lldraghandle.cpp @@ -112,6 +112,7 @@ void LLDragHandleTop::setTitle(const std::string& title) params.font(font); params.follows.flags(FOLLOWS_TOP | FOLLOWS_LEFT | FOLLOWS_RIGHT); params.font_shadow(LLFontGL::DROP_SHADOW_SOFT); + params.use_ellipses = true; mTitleBox = LLUICtrlFactory::create<LLTextBox> (params); addChild( mTitleBox ); } |