diff options
| -rw-r--r-- | indra/newview/llinventorybridge.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index f752c37c2e..6aa55f9183 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -3173,6 +3173,7 @@ void LLFolderBridge::buildContextMenuBaseOptions(U32 flags)  	const LLUUID trash_id = model->findCategoryUUIDForType(LLFolderType::FT_TRASH);  	const LLUUID lost_and_found_id = model->findCategoryUUIDForType(LLFolderType::FT_LOST_AND_FOUND); +	const LLUUID favorites = model->findCategoryUUIDForType(LLFolderType::FT_FAVORITE);  	if (lost_and_found_id == mUUID)  	{ @@ -3186,7 +3187,10 @@ void LLFolderBridge::buildContextMenuBaseOptions(U32 flags)  		mDisabledItems.push_back(std::string("New Clothes"));  		mDisabledItems.push_back(std::string("New Body Parts"));  	} - +	if (favorites == mUUID) +	{ +		mDisabledItems.push_back(std::string("New Folder")); +	}  	if(trash_id == mUUID)  	{  		// This is the trash. | 
