diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-07-15 17:34:16 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-07-15 17:34:16 +0300 |
commit | a5675bedbb2bd34ce03dd16651dc74d8078efea9 (patch) | |
tree | 26d0cd120930c2c4fc864027121fd8e789add10a /indra/newview/lltoolpie.cpp | |
parent | d3d0711f1da33665df63be41758fbc1480244811 (diff) |
SL-443 Keybindings: Support reassigment of script interaction button
Diffstat (limited to 'indra/newview/lltoolpie.cpp')
-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 322d0bc727..543a93bf9b 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -746,7 +746,7 @@ BOOL LLToolPie::handleHover(S32 x, S32 y, MASK mask) else if (!mMouseOutsideSlop && mMouseButtonDown // disable camera steering if click on land is not used for moving - && gViewerInput.isMouseBindUsed(CLICK_LEFT)) + && gViewerInput.isMouseBindUsed(CLICK_LEFT, MASK_NONE, MODE_THIRD_PERSON)) { S32 delta_x = x - mMouseDownX; S32 delta_y = y - mMouseDownY; |