diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-04-08 22:39:41 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-04-11 12:36:48 +0300 |
commit | 1bb8fb2795920b57a5934ffa394d78a6c5733ce8 (patch) | |
tree | 576ce4330aa58d1335f265ace3d5b235b21db853 /indra/newview/llinventorymodel.cpp | |
parent | b95b20a1be56ff7baa3ad20e8d0571ec9f07ab12 (diff) |
#3757 Menu for subfodlers in outfits
Diffstat (limited to 'indra/newview/llinventorymodel.cpp')
-rw-r--r-- | indra/newview/llinventorymodel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index 9fffe6378e..6f4d2db12e 100644 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -1007,7 +1007,8 @@ void LLInventoryModel::createNewCategory(const LLUUID& parent_id, return; } - if (preferred_type != LLFolderType::FT_NONE) + if (preferred_type != LLFolderType::FT_NONE + && preferred_type != LLFolderType::FT_OUTFIT) { // Ultimately this should only be done for non-singleton // types. Requires back-end changes to guarantee that others |