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

master
Andrey Lihatskiy 2022-10-19 23:42:30 +03:00 committed by Ansariel
parent f42a2d0a7f
commit 88258b7fa1
1 changed files with 1 additions and 1 deletions

View File

@ -4795,7 +4795,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"));
}