diff options
author | Richard Linden <none@none> | 2010-07-15 10:20:06 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-07-15 10:20:06 -0700 |
commit | 2fb2efe2a24127ccb274cfdf1ca8e7e22d301ed5 (patch) | |
tree | 3284e93e2648e026d94846b863feeea10ce23ee9 /indra/llui/lldraghandle.cpp | |
parent | b46fff1ba1450d14424e676f31c0cacd921bedb0 (diff) |
changed allow_html to parse_urls to be clearer about its meaning
allow_html still supported as alternate
Diffstat (limited to 'indra/llui/lldraghandle.cpp')
-rw-r--r-- | indra/llui/lldraghandle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lldraghandle.cpp b/indra/llui/lldraghandle.cpp index 9f83fcca35..b52cb2b751 100644 --- a/indra/llui/lldraghandle.cpp +++ b/indra/llui/lldraghandle.cpp @@ -113,7 +113,7 @@ void LLDragHandleTop::setTitle(const std::string& title) params.follows.flags(FOLLOWS_TOP | FOLLOWS_LEFT | FOLLOWS_RIGHT); params.font_shadow(LLFontGL::DROP_SHADOW_SOFT); params.use_ellipses = true; - params.allow_html = false; //cancel URL replacement in floater title + params.parse_urls = false; //cancel URL replacement in floater title mTitleBox = LLUICtrlFactory::create<LLTextBox> (params); addChild( mTitleBox ); } |