From 8eb6c6dec89aff623854394aa8e373926ff4e869 Mon Sep 17 00:00:00 2001
From: Vadim Savchuk <vsavchuk@productengine.com>
Date: Fri, 17 Sep 2010 22:52:51 +0300
Subject: [PATCH] STORM-183 ADDITIONAL FIX Disabled the "Replace Current
 Outfit" option of the inventory context menu for incomplete outfits.

---
 indra/newview/llinventorybridge.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 02e7f0b9e2b..311d7913198 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -2471,6 +2471,10 @@ void LLFolderBridge::folderOptionsMenu()
 		{
 			disabled_items.push_back(std::string("Remove From Outfit"));
 		}
+		if (!LLAppearanceMgr::instance().getCanReplaceCOF(mUUID))
+		{
+			disabled_items.push_back(std::string("Replace Outfit"));
+		}
 		mItems.push_back(std::string("Outfit Separator"));
 	}
 	LLMenuGL* menup = dynamic_cast<LLMenuGL*>(mMenu.get());
-- 
GitLab