diff options
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/llappearancemgr.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 4c98181ef3..c5e98915fc 100755 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -1431,12 +1431,12 @@ void LLAppearanceMgr::takeOffOutfit(const LLUUID& cat_id)  		uuids_to_remove.push_back(item->getUUID());  	}  	removeItemsFromAvatar(uuids_to_remove); -	// now deactivating all gestures in that folder +	// deactivate all gestures in the outfit folder  	LLInventoryModel::item_array_t gest_items; -        getDescendentsOfAssetType(cat_id, gest_items, LLAssetType::AT_GESTURE, false); -        for(S32 i = 0; i  < gest_items.count(); ++i) -        { +	getDescendentsOfAssetType(cat_id, gest_items, LLAssetType::AT_GESTURE, false); +	for(S32 i = 0; i  < gest_items.count(); ++i) +	{  		LLViewerInventoryItem *gest_item = gest_items.get(i);  		if ( LLGestureMgr::instance().isGestureActive( gest_item->getLinkedUUID()) )  		{  | 
