diff options
| author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-09-14 13:05:24 +0300 | 
|---|---|---|
| committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-09-14 13:05:24 +0300 | 
| commit | 1d58d69d1e0bf5bf7f686d3764362b90fd79bfa7 (patch) | |
| tree | fa8991a5452df03d8229f1dbbda1af0206691cc7 /indra | |
| parent | 76165eed99d3662d2dcfd31eaa8e4203f04e3e48 (diff) | |
MAINT-5627 FIXED "Copy to merchant outbox" menu item is removed
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/llinventorybridge.cpp | 28 | ||||
| -rwxr-xr-x | indra/newview/skins/default/xui/en/menu_inventory.xml | 8 | 
2 files changed, 0 insertions, 36 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 36a3204391..c990eda074 100755 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -777,14 +777,6 @@ void LLInvFVBridge::getClipboardEntries(bool show_asset_id,  			{  				items.push_back(std::string("Marketplace Separator")); -                if (gMenuHolder->getChild<LLView>("MerchantOutbox")->getVisible()) -                { -                    items.push_back(std::string("Merchant Copy")); -                    if (!canListOnOutboxNow()) -                    { -                        disabled_items.push_back(std::string("Merchant Copy")); -                    } -                }                  if (gMenuHolder->getChild<LLView>("MarketplaceListings")->getVisible())                  {                      items.push_back(std::string("Marketplace Copy")); @@ -1706,16 +1698,6 @@ void LLItemBridge::performAction(LLInventoryModel* model, std::string action)  		folder_view_itemp->getViewModelItem()->pasteLinkFromClipboard();  		return;  	} -	else if (isMarketplaceCopyAction(action)) -	{ -		LL_INFOS() << "Copy item to marketplace action!" << LL_ENDL; - -		LLInventoryItem* itemp = model->getItem(mUUID); -		if (!itemp) return; - -		const LLUUID outbox_id = getInventoryModel()->findCategoryUUIDForType(LLFolderType::FT_OUTBOX, false); -		copy_item_to_outbox(itemp, outbox_id, LLUUID::null, LLToolDragAndDrop::getOperationId()); -	}  	else if (("move_to_marketplace_listings" == action) || ("copy_to_marketplace_listings" == action) || ("copy_or_move_to_marketplace_listings" == action))  	{  		LLInventoryItem* itemp = model->getItem(mUUID); @@ -3304,16 +3286,6 @@ void LLFolderBridge::performAction(LLInventoryModel* model, std::string action)  		removeSystemFolder();  	}  #endif -	else if (isMarketplaceCopyAction(action)) -	{ -		LL_INFOS() << "Copy folder to marketplace action!" << LL_ENDL; - -		LLInventoryCategory * cat = gInventory.getCategory(mUUID); -		if (!cat) return; - -		const LLUUID outbox_id = getInventoryModel()->findCategoryUUIDForType(LLFolderType::FT_OUTBOX, false); -		copy_folder_to_outbox(cat, outbox_id, cat->getUUID(), LLToolDragAndDrop::getOperationId()); -	}  	else if (("move_to_marketplace_listings" == action) || ("copy_to_marketplace_listings" == action) || ("copy_or_move_to_marketplace_listings" == action))  	{  		LLInventoryCategory * cat = gInventory.getCategory(mUUID); diff --git a/indra/newview/skins/default/xui/en/menu_inventory.xml b/indra/newview/skins/default/xui/en/menu_inventory.xml index 033a10c9ec..61002bf1b5 100755 --- a/indra/newview/skins/default/xui/en/menu_inventory.xml +++ b/indra/newview/skins/default/xui/en/menu_inventory.xml @@ -777,14 +777,6 @@  	 layout="topleft"  	 name="Marketplace Separator" />  	<menu_item_call -	 label="Copy to Merchant Outbox" -	 layout="topleft" -	 name="Merchant Copy"> -		<menu_item_call.on_click -		 function="Inventory.DoToSelected" -		 parameter="copy_to_outbox" /> -	</menu_item_call> -	<menu_item_call          label="Copy to Marketplace Listings"          layout="topleft"          name="Marketplace Copy">  | 
