diff options
author | Loren Shih <seraph@lindenlab.com> | 2009-11-17 20:13:31 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2009-11-17 20:13:31 -0500 |
commit | a34c89df8724cc625b7e1383c12df43fc627d772 (patch) | |
tree | bb451b90874c8e0e6f2e39546f95d57d5a08f1a4 /indra/llcommon | |
parent | ceee6c3e5ecfdcb8c310b613e3edb7b094289adf (diff) |
EXT-1916 : Landmarks are not sorted in the Favorites Bar accordion
Sorting was fixed when LLFolderViewFolder was added back into the inventory panels. This checkin additionally allows sorting in the landmarks inventory panel.
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llfoldertype.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llcommon/llfoldertype.cpp b/indra/llcommon/llfoldertype.cpp index 079e670b1a..a5dd342be2 100644 --- a/indra/llcommon/llfoldertype.cpp +++ b/indra/llcommon/llfoldertype.cpp @@ -120,6 +120,8 @@ const std::string &LLFolderType::lookup(LLFolderType::EType folder_type) // you can't change certain properties such as their type. bool LLFolderType::lookupIsProtectedType(EType folder_type) { + return FALSE; + /* const LLFolderDictionary *dict = LLFolderDictionary::getInstance(); const FolderEntry *entry = dict->lookup(folder_type); if (entry) @@ -127,6 +129,7 @@ bool LLFolderType::lookupIsProtectedType(EType folder_type) return entry->mIsProtected; } return true; + */ } // static |