diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-08-15 20:38:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-15 20:38:02 +0300 |
commit | 5430efbb31cfc0f57eac7fd130bb43aafa85143a (patch) | |
tree | 46d44d8ef7efa3f1b2dbd7658f381509ab8c970e /indra/llui/lltextbase.cpp | |
parent | 12f18ff4614225093f753b16cfd278880eca0387 (diff) |
SL-20139 pressing the Tab key should paste tooltip only when hovering functions in LSL editor
Diffstat (limited to 'indra/llui/lltextbase.cpp')
-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 8732a7ce45..26a38bd541 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -3431,7 +3431,7 @@ BOOL LLNormalTextSegment::handleToolTip(S32 x, S32 y, MASK mask) if (mToken && !mToken->getToolTip().empty()) { const LLWString& wmsg = mToken->getToolTip(); - LLToolTipMgr::instance().show(wstring_to_utf8str(wmsg)); + LLToolTipMgr::instance().show(wstring_to_utf8str(wmsg), (mToken->getType() == LLKeywordToken::TT_FUNCTION)); return TRUE; } // or do we have an explicitly set tooltip (e.g., for Urls) |