diff options
author | daianakproductengine <daianakproductengine@lindenlab.com> | 2017-06-16 20:03:23 +0300 |
---|---|---|
committer | daianakproductengine <daianakproductengine@lindenlab.com> | 2017-06-16 20:03:23 +0300 |
commit | 8a75b5eb18b77c30baead8d8ac42b1d63f903efe (patch) | |
tree | 3f26cd275c9c3ad444f98ee4ebd14c40f5a88cb5 | |
parent | 4054a935e8976bea6af44332932c9924b8fb94dd (diff) |
MAINT-200 Fixed inconsistent touch hover icon and touch click action when viewed through transparent prims
-rw-r--r-- | 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 fc052ae3aa..b829741b3c 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -113,7 +113,7 @@ BOOL LLToolPie::handleMouseDown(S32 x, S32 y, MASK mask) mMouseDownY = y; //left mouse down always picks transparent (but see handleMouseUp) - mPick = gViewerWindow->pickImmediate(x, y, TRUE, FALSE); + mPick = gViewerWindow->pickImmediate(x, y, FALSE, FALSE); mPick.mKeyMask = mask; mMouseButtonDown = true; |