SL-18353 Don't allow "Ungroup folder items" on outfit folders

master
Andrey Lihatskiy 2022-10-19 23:42:30 +03:00
parent 46d4775eca
commit 4aaa686a2d
1 changed files with 1 additions and 1 deletions

View File

@ -4311,7 +4311,7 @@ void LLFolderBridge::buildContextMenuFolderOptions(U32 flags, menuentry_vec_t&
items.push_back(std::string("IM All Contacts In Folder"));
}
if (((flags & ITEM_IN_MULTI_SELECTION) == 0) && hasChildren())
if (((flags & ITEM_IN_MULTI_SELECTION) == 0) && hasChildren() && (type != LLFolderType::FT_OUTFIT))
{
items.push_back(std::string("Ungroup folder items"));
}