diff options
author | Loren Shih <seraph@lindenlab.com> | 2009-11-16 17:49:11 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2009-11-16 17:49:11 -0500 |
commit | 4110307f28b0210311179b15bc4e85de3bdfbce0 (patch) | |
tree | 4eda439b7da64283033fc44b07670bd3cd9216d8 | |
parent | 909125258dabd0722785519f689d20608bb13fc1 (diff) |
EXT-2527 : Allow contents of Appearance panel to be expandable
Changed the InventoryFilter logic slightly, so that if it's filtering by categories, it allows the contents of those categories to pass.
--HG--
branch : avatar-pipeline
-rw-r--r-- | indra/newview/llinventoryfilter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp index 7ec8d3d003..3e4b3327db 100644 --- a/indra/newview/llinventoryfilter.cpp +++ b/indra/newview/llinventoryfilter.cpp @@ -108,6 +108,10 @@ BOOL LLInventoryFilter::check(LLFolderViewItem* item) passed_type |= ((1LL << cat->getPreferredType() & mFilterOps.mFilterTypes) != U64(0)); } } + else + { + passed_type = TRUE; + } } else { |