aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorthickbrick2010-09-14 02:34:39 +0200
committerthickbrick2010-09-14 02:34:39 +0200
commit8d53e655a6e81e4655cae2ebad46a57cdcf62ac5 (patch)
tree9fe877563c3bfcfe61b8d660a65b8440ec9a70d3 /linden/indra
parentSNOW-282: prevent the toolbox from showing up uninvited and grabbing in-world... (diff)
downloadmeta-impy-8d53e655a6e81e4655cae2ebad46a57cdcf62ac5.zip
meta-impy-8d53e655a6e81e4655cae2ebad46a57cdcf62ac5.tar.gz
meta-impy-8d53e655a6e81e4655cae2ebad46a57cdcf62ac5.tar.bz2
meta-impy-8d53e655a6e81e4655cae2ebad46a57cdcf62ac5.tar.xz
Prevent double-click teleport when double-clicking touch-scripted objects or objects with
non-default click action (sit, buy, etc.)
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/newview/lltoolpie.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/linden/indra/newview/lltoolpie.cpp b/linden/indra/newview/lltoolpie.cpp
index 2887515..2b63a24 100644
--- a/linden/indra/newview/lltoolpie.cpp
+++ b/linden/indra/newview/lltoolpie.cpp
@@ -727,6 +727,19 @@ BOOL LLToolPie::handleDoubleClick(S32 x, S32 y, MASK mask)
727 LL_DEBUGS("DoubleClicks") << "Double clicked other Avatar" << LL_ENDL; 727 LL_DEBUGS("DoubleClicks") << "Double clicked other Avatar" << LL_ENDL;
728 return FALSE;// or what about open profile or IM session or ... 728 return FALSE;// or what about open profile or IM session or ...
729 } 729 }
730
731 if (final_click_action(object))
732 {
733 LL_DEBUGS("DoubleClicks") << "Double clicked an object with a click action" << LL_ENDL;
734 return FALSE;
735 }
736
737 LLViewerObject* parent = object->getRootEdit();
738 if (object->flagHandleTouch() || (parent && parent->flagHandleTouch()))
739 {
740 LL_DEBUGS("DoubleClicks") << "Double clicked a touch-scripted object" << LL_ENDL;
741 return FALSE;
742 }
730 } 743 }
731 744
732 std::string action = gSavedSettings.getString("DoubleClickAction"); 745 std::string action = gSavedSettings.getString("DoubleClickAction");