diff options
| author | Richard Nelson <richard@lindenlab.com> | 2011-10-03 13:23:50 -0700 | 
|---|---|---|
| committer | Richard Nelson <richard@lindenlab.com> | 2011-10-03 13:23:50 -0700 | 
| commit | 0ecc5c0878adf93e96b99e3db4c65cdb757b99fb (patch) | |
| tree | 25741079cb8edf161b07741decffb43ffa04b144 /indra/newview/llagent.cpp | |
| parent | 6eb09ab2ae9c90b23c8af1929e7d0a2088a6e76e (diff) | |
| parent | fa3b55e68a00359f8b37b1225337e615b3f6da4d (diff) | |
Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience
Diffstat (limited to 'indra/newview/llagent.cpp')
| -rwxr-xr-x | indra/newview/llagent.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 642a1907f0..296ae8f10b 100755 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -107,7 +107,6 @@ const F64 CHAT_AGE_FAST_RATE = 3.0;  const F32 MIN_FIDGET_TIME = 8.f; // seconds  const F32 MAX_FIDGET_TIME = 20.f; // seconds -  // The agent instance.  LLAgent gAgent; @@ -115,6 +114,9 @@ LLAgent gAgent;  // Statics  // +/// minimum time after setting away state before coming back based on movement +const F32 LLAgent::MIN_AFK_TIME = 10.0f; +  const F32 LLAgent::TYPING_TIMEOUT_SECS = 5.f;  std::map<std::string, std::string> LLAgent::sTeleportErrorMessages; @@ -1165,6 +1167,7 @@ void LLAgent::setAFK()  	{  		sendAnimationRequest(ANIM_AGENT_AWAY, ANIM_REQUEST_START);  		setControlFlags(AGENT_CONTROL_AWAY | AGENT_CONTROL_STOP); +		LL_INFOS("AFK") << "Setting Away" << LL_ENDL;  		gAwayTimer.start();  		if (gAFKMenu)  		{ @@ -1188,6 +1191,7 @@ void LLAgent::clearAFK()  	{  		sendAnimationRequest(ANIM_AGENT_AWAY, ANIM_REQUEST_STOP);  		clearControlFlags(AGENT_CONTROL_AWAY); +		LL_INFOS("AFK") << "Clearing Away" << LL_ENDL;  		if (gAFKMenu)  		{  			gAFKMenu->setLabel(LLTrans::getString("AvatarSetAway"));  | 
