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

master
maxim_productengine 2019-01-09 10:57:15 +02:00
parent 3b9b6877a1
commit cd859cd9e8
1 changed files with 5 additions and 0 deletions

View File

@ -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 );