diff options
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/llappearancemgr.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/llappearancemgr.h | 4 | 
2 files changed, 4 insertions, 2 deletions
| diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index d994b7ca42..a0f8cbe911 100755 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -2836,6 +2836,8 @@ void appearance_mgr_update_dirty_state()  	if (LLAppearanceMgr::instanceExists())  	{  		LLAppearanceMgr::getInstance()->updateIsDirty(); +		LLAppearanceMgr::getInstance()->setOutfitLocked(false); +		gAgentWearables.notifyLoadingFinished();  	}  } diff --git a/indra/newview/llappearancemgr.h b/indra/newview/llappearancemgr.h index 13a2a62717..8c8b5e2489 100755 --- a/indra/newview/llappearancemgr.h +++ b/indra/newview/llappearancemgr.h @@ -171,6 +171,8 @@ public:  	// should only be necessary to do on initial login.  	void updateIsDirty(); +	void setOutfitLocked(bool locked); +  	// Called when self avatar is first fully visible.  	void onFirstFullyVisible(); @@ -250,8 +252,6 @@ private:  	static void onOutfitRename(const LLSD& notification, const LLSD& response); -	void setOutfitLocked(bool locked); -  	bool mAttachmentInvLinkEnabled;  	bool mOutfitIsDirty;  	bool mIsInUpdateAppearanceFromCOF; // to detect recursive calls. | 
