diff options
author | James Cook <james@lindenlab.com> | 2009-11-17 10:02:01 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-11-17 10:02:01 -0800 |
commit | a2041387b1c39328aaf0d5037ca039a971a6d79c (patch) | |
tree | 25064e2a6fe52fc60ef50bf799a34ba90c03ad33 /indra/llui | |
parent | ac325092cd653f0229111e1e548b82055e8a77c8 (diff) |
Fix broken URL highlighting in local chat, broken in 5068 : ce08ac445035. Typo, not reviewed.
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/lltextbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index a06b7e237b..caaf47240f 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -1509,7 +1509,7 @@ void LLTextBase::appendText(const std::string &new_text, bool prepend_newline, c std::string font_name = LLFontGL::nameFromFont(style_params.font()); std::string font_size = LLFontGL::sizeFromFont(style_params.font()); link_params.font.name(font_name); - link_params.font.size(font_name); + link_params.font.size(font_size); link_params.font.style("UNDERLINE"); link_params.link_href = match.getUrl(); |