diff options
author | MaximB ProductEngine <mberezhnoy@productengine.com> | 2013-10-11 23:06:25 +0300 |
---|---|---|
committer | MaximB ProductEngine <mberezhnoy@productengine.com> | 2013-10-11 23:06:25 +0300 |
commit | b7fbcef2983f9d15d6850b0141814f46a733ac2a (patch) | |
tree | 871e2c863c1da613442b5c7ca8e95218ac755eac | |
parent | e8d9b05a29fc2721d52b297745cf1a0cce3351a1 (diff) |
MAINT-3289 (User is not able to open mini inspector by one click on 'i' icon)
-rwxr-xr-x | indra/llui/lltexteditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index 7f309a5ff6..62140dd9d6 100755 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -729,7 +729,7 @@ BOOL LLTextEditor::handleMouseDown(S32 x, S32 y, MASK mask) // Delay cursor flashing resetCursorBlink(); - if (handled) + if (handled && !gFocusMgr.getMouseCapture()) { gFocusMgr.setMouseCapture( this ); } |