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/lltexteditor.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/lltexteditor.cpp')
-rw-r--r-- | indra/llui/lltexteditor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index 3d2a426913..c83ed4c3e1 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -1779,7 +1779,8 @@ BOOL LLTextEditor::handleKeyHere(KEY key, MASK mask ) else { if (mEnableTooltipPaste && - LLToolTipMgr::instance().toolTipVisible() && + LLToolTipMgr::instance().toolTipVisible() && + LLToolTipMgr::instance().isTooltipPastable() && KEY_TAB == key) { // Paste the first line of a tooltip into the editor std::string message; |