diff options
| -rw-r--r-- | indra/newview/lltoolpie.cpp | 5 | 
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 &&  | 
