diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-04-02 19:55:34 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-04-06 23:24:38 +0300 |
commit | 8215fff0c2a1c895ef916837847cf7526ae61ef9 (patch) | |
tree | 7c3346132eab0481532e7e2fd6896df86f936c92 /indra/newview/lltoolface.cpp | |
parent | 77147012fff0673fc5c8ab9ffe654bd32305ad1a (diff) |
SL-14717 Ability to trigger left clicks (and more) on animesh objects
Contribution by Rohacan Hirons
SL-14717 Follow ups
SL-14717 Using the cached setting in LLToolPie::handleHover()
Diffstat (limited to 'indra/newview/lltoolface.cpp')
-rw-r--r-- | indra/newview/lltoolface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltoolface.cpp b/indra/newview/lltoolface.cpp index a00ac10698..71986d21f9 100644 --- a/indra/newview/lltoolface.cpp +++ b/indra/newview/lltoolface.cpp @@ -73,7 +73,7 @@ BOOL LLToolFace::handleDoubleClick(S32 x, S32 y, MASK mask) BOOL LLToolFace::handleMouseDown(S32 x, S32 y, MASK mask) { - gViewerWindow->pickAsync(x, y, mask, pickCallback); + gViewerWindow->pickAsync(x, y, mask, pickCallback, false, gSavedSettings.getBOOL("AnimatedObjectsAllowLeftClick")); return TRUE; } |