diff options
author | Merov Linden <merov@lindenlab.com> | 2013-01-25 17:35:56 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2013-01-25 17:35:56 -0800 |
commit | 9b52a0d15a265c5bc3a9eaeea1eac00b0e25ad0b (patch) | |
tree | ccf87140822574c94014d57d29d902b25f37f574 /indra/llcommon | |
parent | 605511d6738817c7df3a85da873ef72c2471c642 (diff) |
MAINT-2287 : WIP : Make inbox and outbox visible and accessible if InventoryOutboxMakeVisible is set (default is false)
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llfoldertype.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/llcommon/llfoldertype.cpp b/indra/llcommon/llfoldertype.cpp index f6d0f5bce8..9c38349cf7 100644 --- a/indra/llcommon/llfoldertype.cpp +++ b/indra/llcommon/llfoldertype.cpp @@ -92,8 +92,9 @@ LLFolderDictionary::LLFolderDictionary() addEntry(LLFolderType::FT_MESH, new FolderEntry("mesh", TRUE)); - addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", TRUE)); - addEntry(LLFolderType::FT_OUTBOX, new FolderEntry("outbox", TRUE)); + addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", FALSE)); + addEntry(LLFolderType::FT_OUTBOX, new FolderEntry("outbox", FALSE)); + addEntry(LLFolderType::FT_BASIC_ROOT, new FolderEntry("basic_rt", TRUE)); addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE)); |