From dd7ab5a0ff4f1bd52f9ef4a797f7597c2dc535e5 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Mon, 21 Jan 2019 08:48:54 -0500 Subject: [PATCH] Underline all registered urls on hover --- indra/llui/lltexteditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index 076c6728b..547db779f 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -4286,7 +4286,7 @@ void LLTextEditor::appendTextImpl(const std::string &new_text, const LLStyleSP s LLStyleSP link_style(style ? new LLStyle(*style) : new LLStyle); link_style->setColor(link_color); link_style->setLinkHREF(match.getUrl()); - appendAndHighlightText(link, part, link_style, match.underlineOnHoverOnly()); + appendAndHighlightText(link, part, link_style, true/*match.underlineOnHoverOnly()*/); }; while (!text.empty() && LLUrlRegistry::instance().findUrl(text, match, boost::bind(&LLTextEditor::replaceUrl, this, _1, _2, _3)))