Skip to content
Snippets Groups Projects
Commit cd859cd9 authored by maxim_productengine's avatar maxim_productengine
Browse files

SL-10321 FIXED 'Uploads' tab is not displayed after any search in Preferences

parent 3b9b6877
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,11 @@ bool ll::prefs::PanelData::hightlightAndHide( LLWString const &aFilter )
for( tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr )
(*itr)->setNotHighlighted( );
if (aFilter.empty())
{
return true;
}
bool bVisible(false);
for( tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr )
bVisible |= (*itr)->hightlightAndHide( aFilter );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment