summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2009-11-16 17:49:11 -0500
committerLoren Shih <seraph@lindenlab.com>2009-11-16 17:49:11 -0500
commit4110307f28b0210311179b15bc4e85de3bdfbce0 (patch)
tree4eda439b7da64283033fc44b07670bd3cd9216d8 /indra/newview
parent909125258dabd0722785519f689d20608bb13fc1 (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
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llinventoryfilter.cpp4
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
{