diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2020-10-23 16:05:31 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2020-10-23 16:05:31 +0300 |
commit | a74cadff8369ab5779877af6f1b030e1cc40e961 (patch) | |
tree | d898234a9b8de20d2290eebf57a2f980ea377145 /indra/llui/lltextbox.cpp | |
parent | 701edc36f3ed03c89a563fc25fc661c90fbd0c94 (diff) |
SL-14149 FIXED The text is displayed black after double-clicking on it
Diffstat (limited to 'indra/llui/lltextbox.cpp')
-rw-r--r-- | indra/llui/lltextbox.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/lltextbox.cpp b/indra/llui/lltextbox.cpp index 0afd32f332..4dc2a6a597 100644 --- a/indra/llui/lltextbox.cpp +++ b/indra/llui/lltextbox.cpp @@ -45,7 +45,9 @@ LLTextBox::LLTextBox(const LLTextBox::Params& p) : LLTextBase(p), mClickedCallback(NULL), mShowCursorHand(true) -{} +{ + mSkipTripleClick = true; +} LLTextBox::~LLTextBox() {} |