From 2fc783e67e7f057946c62d190faa249f5f0650f0 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Sat, 26 Apr 2014 09:47:56 -0400 Subject: [PATCH] The people want link parsing on! Let them have links in all text editors that aren't allow_html="false"! --- indra/newview/llviewertexteditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp index 57e63be70..82a70f65e 100644 --- a/indra/newview/llviewertexteditor.cpp +++ b/indra/newview/llviewertexteditor.cpp @@ -1667,7 +1667,7 @@ LLView* LLViewerTextEditor::fromXML(LLXMLNodePtr node, LLView *parent, LLUICtrlF node->getAttributeBOOL("hide_border", hide_border); text_editor->setBorderVisible(!hide_border); - BOOL parse_html = text_editor->mParseHTML; + BOOL parse_html = true; node->getAttributeBOOL("allow_html", parse_html); text_editor->setParseHTML(parse_html); text_editor->setParseHighlights(TRUE);