diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2025-04-10 17:57:16 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2025-04-18 19:59:09 +0300 |
commit | 90c7684112714fd5ca2c8d73d8ca9bef3fc1e5d6 (patch) | |
tree | 6f85fb1bb4085388f3839d9135eee354632336b5 /indra/newview/llappviewer.cpp | |
parent | 3d5f1541dd9980196ba0c8a3c3396c8ed3384d1e (diff) |
#3758 add support for highlighted segments
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 edc70030b4..7e7aa521d3 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -475,7 +475,7 @@ static void deferred_ui_audio_callback(const LLUUID& uuid) bool create_text_segment_icon_from_url_match(LLUrlMatch* match,LLTextBase* base) { - if(!match || !base || base->getPlainText()) + if (!match || match->getSkipProfileIcon() || !base || base->getPlainText()) return false; LLUUID match_id = match->getID(); |