diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-10-19 23:42:30 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-10-20 02:16:02 +0300 |
commit | 4aaa686a2df36fb20815f5c1ee24a030e5829a1f (patch) | |
tree | 8ea9e0e98fac4f07aac716749f6099069d550e99 /indra | |
parent | 46d4775eca2d5b6e8af42e722d1ed86257f11777 (diff) |
SL-18353 Don't allow "Ungroup folder items" on outfit folders
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 004c520c43..2d9bbbe0f0 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -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")); } |