diff options
| author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2025-11-10 15:02:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-10 15:02:34 +0200 |
| commit | 20eac2d8f65c49b2e387c1408a62c24234182647 (patch) | |
| tree | fa51e4c5675b1f4b050de6e19b252dfcf5cbe27d | |
| parent | 5e28a5de82ce94b4d10142f065f3fd08990ea623 (diff) | |
#4932 fix @mention being displayed twice if the name has a TM symbol
| -rw-r--r-- | indra/llui/lltextbase.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/lltextbase.h b/indra/llui/lltextbase.h index 50767a35b3..b248882aac 100644 --- a/indra/llui/lltextbase.h +++ b/indra/llui/lltextbase.h @@ -142,6 +142,7 @@ public: /*virtual*/ void updateLayout(const class LLTextBase& editor); /*virtual*/ F32 draw(S32 start, S32 end, S32 selection_start, S32 selection_end, const LLRectf& draw_rect); /*virtual*/ bool canEdit() const { return mCanEdit; } + /*virtual*/ bool getPermitsEmoji() const { return false; } /*virtual*/ const LLUIColor& getColor() const { return mStyle->getColor(); } /*virtual*/ LLStyleConstSP getStyle() const { return mStyle; } /*virtual*/ void setStyle(LLStyleConstSP style) { mStyle = style; } |
