summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2022-02-15 14:41:22 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2022-02-15 14:45:17 +0200
commitce6dd53f9c364f46e30d0eedb1c6a701fbad8885 (patch)
treedd55a059d1b7417cdd27744912da410836b17f9e /indra/newview
parent921fe18f8bccdbc5df2123368fef2b8599c80a0e (diff)
SL-16564 'Click to' action 'None' doesn't work as intended #2
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/lltoolpie.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp
index 95552b6771..7e560f7972 100644
--- a/indra/newview/lltoolpie.cpp
+++ b/indra/newview/lltoolpie.cpp
@@ -392,8 +392,9 @@ BOOL LLToolPie::handleLeftClickPick()
gFocusMgr.setKeyboardFocus(NULL);
}
- BOOL touchable = (object && object->flagHandleTouch())
- || (parent && parent->flagHandleTouch());
+ bool touchable = object
+ && (object->getClickAction() != CLICK_ACTION_DISABLED)
+ && (object->flagHandleTouch() || (parent && parent->flagHandleTouch()));
// Switch to grab tool if physical or triggerable
if (object &&