Skip to content
Snippets Groups Projects
Commit e733d5c0 authored by Richard Linden's avatar Richard Linden
Browse files

preemptively adding folder type for basic inventory so we can update sim code to match

parent ae2cbe52
No related branches found
No related tags found
No related merge requests found
...@@ -93,6 +93,8 @@ LLFolderDictionary::LLFolderDictionary() ...@@ -93,6 +93,8 @@ LLFolderDictionary::LLFolderDictionary()
addEntry(LLFolderType::FT_MESH, new FolderEntry("mesh", TRUE)); addEntry(LLFolderType::FT_MESH, new FolderEntry("mesh", TRUE));
addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", TRUE)); addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", TRUE));
addEntry(LLFolderType::FT_BASIC_ROOT, new FolderEntry("basic_root", TRUE));
addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE)); addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE));
}; };
......
...@@ -84,7 +84,9 @@ class LL_COMMON_API LLFolderType ...@@ -84,7 +84,9 @@ class LL_COMMON_API LLFolderType
FT_INBOX = 50, FT_INBOX = 50,
FT_COUNT = 51, FT_BASIC_ROOT = 51,
FT_COUNT = 52,
FT_NONE = -1 FT_NONE = -1
}; };
......
...@@ -130,6 +130,7 @@ LLViewerFolderDictionary::LLViewerFolderDictionary() ...@@ -130,6 +130,7 @@ LLViewerFolderDictionary::LLViewerFolderDictionary()
addEntry(LLFolderType::FT_INBOX, new ViewerFolderEntry("Inbox", "Inv_SysOpen", "Inv_SysClosed", FALSE)); addEntry(LLFolderType::FT_INBOX, new ViewerFolderEntry("Inbox", "Inv_SysOpen", "Inv_SysClosed", FALSE));
addEntry(LLFolderType::FT_BASIC_ROOT, new ViewerFolderEntry("Basic Root", "Inv_SysOpen", "Inv_SysClosed", FALSE));
addEntry(LLFolderType::FT_NONE, new ViewerFolderEntry("New Folder", "Inv_FolderOpen", "Inv_FolderClosed", FALSE, "default")); addEntry(LLFolderType::FT_NONE, new ViewerFolderEntry("New Folder", "Inv_FolderOpen", "Inv_FolderClosed", FALSE, "default"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment