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/lloutfitslist.cpp | |
| parent | b95b20a1be56ff7baa3ad20e8d0571ec9f07ab12 (diff) | |
#3757 Menu for subfodlers in outfits
Diffstat (limited to 'indra/newview/lloutfitslist.cpp')
| -rw-r--r-- | indra/newview/lloutfitslist.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp index cfbfe8f8e0..9d8493549d 100644 --- a/indra/newview/lloutfitslist.cpp +++ b/indra/newview/lloutfitslist.cpp @@ -845,7 +845,8 @@ public:                      LLInventoryModel::cat_array_t* cats;                      LLInventoryModel::item_array_t* items;                      gInventory.getDirectDescendentsOf(inv_cat->getUUID(), cats, items); -                    if (items->size() > 3) // eyes, skin, hair and shape are required +                    if (cats->empty() // protection against outfits inside +                        && items->size() > 3) // eyes, skin, hair and shape are required                      {                          // For now assume this to be an old style outfit, not a subfolder                          // but ideally no such 'outfits' should be left in My Outfits | 
