diff options
| author | Tofu Buzzard <no-email> | 2010-11-09 10:05:17 +0000 |
|---|---|---|
| committer | Tofu Buzzard <no-email> | 2010-11-09 10:05:17 +0000 |
| commit | caa53cc8cdd69bd48bd6c07fa6c98234e81f8a42 (patch) | |
| tree | 682c2571bad71cf52e5157f4703163ca2ce21f57 /indra/llui/llurlentry.cpp | |
| parent | 179e9e37ecbdcd1ad2133733047707ddd42e8c30 (diff) | |
| parent | b657516f72f016a918e0ff627105dd380a94394c (diff) | |
merge up from v-d
Diffstat (limited to 'indra/llui/llurlentry.cpp')
| -rw-r--r-- | indra/llui/llurlentry.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index f49dfec82b..6cc72bad82 100644 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -209,7 +209,13 @@ LLUrlEntryHTTPLabel::LLUrlEntryHTTPLabel() std::string LLUrlEntryHTTPLabel::getLabel(const std::string &url, const LLUrlLabelCallback &cb) { - return getLabelFromWikiLink(url); + std::string label = getLabelFromWikiLink(url); + return (!LLUrlRegistry::instance().hasUrl(label)) ? label : getUrl(url); +} + +std::string LLUrlEntryHTTPLabel::getTooltip(const std::string &string) const +{ + return getUrl(string); } std::string LLUrlEntryHTTPLabel::getUrl(const std::string &string) const @@ -989,7 +995,8 @@ std::string LLUrlEntryNoLink::getLabel(const std::string &url, const LLUrlLabelC LLStyle::Params LLUrlEntryNoLink::getStyle() const { - return LLStyle::Params(); + // Don't render as URL (i.e. no context menu or hand cursor). + return LLStyle::Params().is_link(false); } |
