diff options
| -rw-r--r-- | indra/newview/llinventoryfilter.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp index 5c02b61522..d8e7b8ca67 100644 --- a/indra/newview/llinventoryfilter.cpp +++ b/indra/newview/llinventoryfilter.cpp @@ -195,6 +195,11 @@ bool LLInventoryFilter::checkFolder(const LLUUID& folder_id) const  		return true;  	} +    if(!checkAgainstFilterThumbnails(folder_id)) +    { +        return false; +    } +  	// when applying a filter, matching folders get their contents downloaded first  	// but make sure we are not interfering with pre-download  	if (isNotDefault()  | 
