diff options
author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2015-12-04 20:51:52 +0200 |
---|---|---|
committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2015-12-04 20:51:52 +0200 |
commit | 80bfd16cb0d4bbb025eda7d6b877c29c39971ea6 (patch) | |
tree | acc38f9a886314565f3158883b8c00251e8501d7 | |
parent | 6e6d610a9905c1bceb9dd073c3eed87574fdcb29 (diff) | |
parent | 9ab1cb7ae003687ae90ec0a920a0f5932cc4acc7 (diff) |
Merge fix for MAINT-5892
-rwxr-xr-x | indra/newview/lltoolpie.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp index 4872a65fb3..b6f0ba511b 100755 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -122,7 +122,7 @@ BOOL LLToolPie::handleMouseDown(S32 x, S32 y, MASK mask) BOOL LLToolPie::handleRightMouseDown(S32 x, S32 y, MASK mask) { // don't pick transparent so users can't "pay" transparent objects - mPick = gViewerWindow->pickImmediate(x, y, FALSE, TRUE); + mPick = gViewerWindow->pickImmediate(x, y, /*BOOL pick_transparent*/ FALSE, /*BOOL pick_rigged*/ TRUE, /*BOOL pick_particle*/ TRUE); mPick.mKeyMask = mask; // claim not handled so UI focus stays same |