diff options
| -rw-r--r-- | indra/newview/llcofwearables.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/llcofwearables.cpp b/indra/newview/llcofwearables.cpp index 46d2e0a5db..aa8cc01f7d 100644 --- a/indra/newview/llcofwearables.cpp +++ b/indra/newview/llcofwearables.cpp @@ -208,7 +208,7 @@ protected:  		}  		else if ("edit" == param)  		{ -			return gAgentWearables.isWearableModifiable(selected_id); +			return mUUIDs.size() == 1 && gAgentWearables.isWearableModifiable(selected_id);  		}  		return true;  	} @@ -264,7 +264,7 @@ protected:  		if ("edit" == param)  		{ -			return gAgentWearables.isWearableModifiable(selected_id); +			return mUUIDs.size() == 1 && gAgentWearables.isWearableModifiable(selected_id);  		}  		return true; | 
