diff options
author | Richard Linden <none@none> | 2011-03-28 13:44:52 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-03-28 13:44:52 -0700 |
commit | 1733929aafb2839937c9590a53e06d7e9e623017 (patch) | |
tree | 3e60ab5456cf80f91afd909ba91b56f73fc54fbf /indra/newview | |
parent | f2892c98823a4022604afe91de0bbb1b2ce56e19 (diff) |
SOCIAL-823 FIX Performing click to walk or click to drag actions do not remove move hint in Basic mode
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/lltoolpie.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp index a8243a989e..95bd210ae3 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -37,7 +37,7 @@ #include "llavatarnamecache.h" #include "llviewercontrol.h" #include "llfocusmgr.h" -//#include "llfirstuse.h" +#include "llfirstuse.h" #include "llfloaterland.h" #include "llfloaterreg.h" #include "llfloaterscriptdebug.h" @@ -668,6 +668,8 @@ BOOL LLToolPie::handleMouseUp(S32 x, S32 y, MASK mask) mAutoPilotDestination->setDuration(3.f); handle_go_to(); + LLFirstUse::notMoving(false); + mBlockClickToWalk = false; return TRUE; @@ -1753,6 +1755,7 @@ bool intersect_ray_with_sphere( const LLVector3& ray_pt, const LLVector3& ray_di void LLToolPie::startCameraSteering() { + LLFirstUse::notMoving(false); mMouseOutsideSlop = true; mBlockClickToWalk = true; |