diff options
| -rw-r--r-- | indra/newview/lloutfitslist.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp index 927ea19d98..e4079c709a 100644 --- a/indra/newview/lloutfitslist.cpp +++ b/indra/newview/lloutfitslist.cpp @@ -613,7 +613,7 @@ void LLOutfitsList::applyFilterToTab(  	{  		// hide tab if its title doesn't pass filter  		// and it has no visible items -		tab->setVisible(!list->empty()); +		tab->setVisible(list->size() > 0);  		// remove title highlighting because it might  		// have been previously highlighted by less restrictive filter  | 
