diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2024-10-10 17:06:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 17:06:08 +0300 |
commit | d69ad11a8d0d1a3b02ff75fdec7e2b230a526abc (patch) | |
tree | de6035b1b6379d6ef79260e3ce8c9e5cfb75767d /indra/llui/lltexteditor.cpp | |
parent | 3091985d31e1ccf9aba159dec4f2d5ea31723ce0 (diff) | |
parent | d5218c05219a6bddb63d752a9df3b5d6fe1e3cf7 (diff) |
Merge branch 'develop' into maxim/lua-nearby-avatars
Diffstat (limited to 'indra/llui/lltexteditor.cpp')
-rw-r--r-- | indra/llui/lltexteditor.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index ecac800def..088fbe2744 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -1211,6 +1211,14 @@ void LLTextEditor::showEmojiHelper() LLEmojiHelper::instance().showHelper(this, cursorRect.mLeft, cursorRect.mTop, LLStringUtil::null, cb); } +void LLTextEditor::hideEmojiHelper() +{ + if (mShowEmojiHelper) + { + LLEmojiHelper::instance().hideHelper(this); + } +} + void LLTextEditor::tryToShowEmojiHelper() { if (mReadOnly || !mShowEmojiHelper) |