diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-03-21 18:58:24 -0400 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-03-21 18:58:24 -0400 | 
| commit | 231b90cbacaf4e95e528c3335659f1959907cf59 (patch) | |
| tree | ce2babef9a8ac5b2f1175f34309c470a51720204 | |
| parent | 4c8c4eb28a05056b59461374947b8fffb4e35a3d (diff) | |
SH-3039 WIP - trying to close phases where needed
| -rwxr-xr-x[-rw-r--r--] | indra/newview/llagent.cpp | 7 | ||||
| -rwxr-xr-x[-rw-r--r--] | indra/newview/llagentwearables.cpp | 5 | ||||
| -rwxr-xr-x[-rw-r--r--] | indra/newview/llagentwearables.h | 1 | 
3 files changed, 13 insertions, 0 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 8aba2e76a2..3f1f410db8 100644..100755 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -3783,6 +3783,13 @@ void LLAgent::sendAgentSetAppearance()  		return;  	} +	if (!gAgentWearables.changeInProgress()) +	{ +		// Change is fully resolved, can close some open phases. +		gAgentAvatarp->stopPhase("process_initial_wearables_update"); +		gAgentAvatarp->stopPhase("wear_inventory_category"); +	} +	  	gAgentAvatarp->sendAppearanceChangeMetrics();  	LL_DEBUGS("Avatar") << gAgentAvatarp->avString() << "TAT: Sent AgentSetAppearance: " << gAgentAvatarp->getBakedStatusForPrintout() << LL_ENDL;  	//dumpAvatarTEs( "sendAgentSetAppearance()" ); diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index bd418ca2b3..20ce2f63e2 100644..100755 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -2081,6 +2081,11 @@ boost::signals2::connection LLAgentWearables::addLoadedCallback(loaded_callback_  	return mLoadedSignal.connect(cb);  } +bool LLAgentWearables::changeInProgress() const +{ +	return mCOFChangeInProgress; +} +  void LLAgentWearables::notifyLoadingStarted()  {  	mCOFChangeInProgress = true; diff --git a/indra/newview/llagentwearables.h b/indra/newview/llagentwearables.h index 01cae3ffd8..5932be21c6 100644..100755 --- a/indra/newview/llagentwearables.h +++ b/indra/newview/llagentwearables.h @@ -233,6 +233,7 @@ public:  	typedef boost::signals2::signal<void()>	loaded_signal_t;  	boost::signals2::connection				addLoadedCallback(loaded_callback_t cb); +	bool									changeInProgress() const;  	void									notifyLoadingStarted();  	void									notifyLoadingFinished();  | 
