diff options
author | Merov Linden <merov@lindenlab.com> | 2010-08-25 11:13:30 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2010-08-25 11:13:30 -0700 |
commit | 3862dcd51b97b6b5ed3ab6ec2cb8b286773edb6e (patch) | |
tree | 8e26317e7a68993d74ea39d2fd1e673522057d54 /indra/llui | |
parent | b3e10e872f2f6141e7f75fb1ea08717cbac0e099 (diff) | |
parent | 6fcde580c3a2e6cc62bfab52bd47cae8726c56d4 (diff) |
Sync with viewer-development
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/lltextbase.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index 60c313b6ce..b95596fa70 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -1611,9 +1611,6 @@ void LLTextBase::appendTextImpl(const std::string &new_text, const LLStyle::Para while ( LLUrlRegistry::instance().findUrl(text, match, boost::bind(&LLTextBase::replaceUrlLabel, this, _1, _2)) ) { - - LLTextUtil::processUrlMatch(&match,this); - start = match.getStart(); end = match.getEnd()+1; @@ -1638,6 +1635,10 @@ void LLTextBase::appendTextImpl(const std::string &new_text, const LLStyle::Para std::string subtext=text.substr(0,start); appendAndHighlightText(subtext, part, style_params); } + + // inserts an avatar icon preceding the Url if appropriate + LLTextUtil::processUrlMatch(&match,this); + // output the styled Url (unless we've been asked to suppress hyperlinking) if (match.isLinkDisabled()) { |