diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-12-15 17:33:59 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-12-15 17:33:59 -0500 |
commit | 2dd09062d199ebfe7af8d67c59ec1bdc26e124a9 (patch) | |
tree | c328fbb58261209472b1011c7a03ef7ea6483511 /indra | |
parent | e92a88159c7af972c8edd53e50d6ec2d3592a3dd (diff) |
menu separator fix
--HG--
branch : avatar-pipeline
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 1b374a15a0..78e84c9216 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2496,7 +2496,10 @@ void LLFolderBridge::folderOptionsMenu() checkFolderForContentsOfType(model, is_object) || checkFolderForContentsOfType(model, is_gesture) ) { - mItems.push_back(std::string("Folder Wearables Separator")); + if (!is_sidepanel) + { + mItems.push_back(std::string("Folder Wearables Separator")); + } // Only enable add/replace outfit for non-default folders. if (!is_default_folder) |