diff options
| author | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-07-06 17:24:14 +0300 | 
|---|---|---|
| committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-07-06 17:24:14 +0300 | 
| commit | cf675389d06556ec041bfa6f4e3474c835e79c1c (patch) | |
| tree | 2bc143476e77ed770411c8036735daf16cce6dde | |
| parent | a03e1231486bd5c02e27b7020f53dfd2b397c215 (diff) | |
EXT-8036 FIXED Fixed opening accordion tabs if they match filter after list refresh.
Reviewed by Vadim Savchuk at https://codereview.productengine.com/secondlife/r/697/.
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/lloutfitslist.cpp | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp index aba019356d..63ffb80ff2 100644 --- a/indra/newview/lloutfitslist.cpp +++ b/indra/newview/lloutfitslist.cpp @@ -901,18 +901,6 @@ void LLOutfitsList::applyFilter(const std::string& new_filter_substring)  		if (!new_filter_substring.empty())  		{  			applyFilterToTab(iter->first, tab, new_filter_substring); - -			if (tab->getVisible()) -			{ -				// Open tab if it has passed the filter. -				tab->setDisplayChildren(true); -			} -			else -			{ -				// Set force refresh flag to refresh not visible list -				// when some changes occur in it. -				list->setForceRefresh(true); -			}  		}  		else  		{ @@ -965,6 +953,18 @@ void LLOutfitsList::applyFilterToTab(  		// Try restoring the tab selection.  		restoreOutfitSelection(tab, category_id);  	} + +	if (tab->getVisible()) +	{ +		// Open tab if it has passed the filter. +		tab->setDisplayChildren(true); +	} +	else +	{ +		// Set force refresh flag to refresh not visible list +		// when some changes occur in it. +		list->setForceRefresh(true); +	}  }  bool LLOutfitsList::canTakeOffSelected() | 
