diff options
author | Alexei Arabadji <aarabadji@productengine.com> | 2010-07-21 09:54:25 +0300 |
---|---|---|
committer | Alexei Arabadji <aarabadji@productengine.com> | 2010-07-21 09:54:25 +0300 |
commit | 390bef2091b3458d93d009a98728e9115ead9302 (patch) | |
tree | 7122ff8df671cf56526a4df195aa2ff5e4e396cc /indra/newview/llappviewer.cpp | |
parent | 62040b686568410cdd87d12228b48f0b2ee12f1b (diff) |
EXT-6527 FIXED Avoided show agent/group SLURL icon in plain text mode.
reviewed by Richard Nelson at https://codereview.productengine.com/secondlife/r/773/
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 296e3b7e86..58b651ec39 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -357,7 +357,7 @@ static void ui_audio_callback(const LLUUID& uuid) bool create_text_segment_icon_from_url_match(LLUrlMatch* match,LLTextBase* base) { - if(!match || !base) + if(!match || !base || base->getPlainText()) return false; LLUUID match_id = match->getID(); |