diff options
| author | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-03-03 12:43:53 +0200 | 
|---|---|---|
| committer | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-03-03 12:43:53 +0200 | 
| commit | 57d498850e4047481c2bcaf356d88b8e99511dc0 (patch) | |
| tree | ec836a380a83b7ff72224c2d31c8598a4acb4124 /indra/newview/llpanelpeople.cpp | |
| parent | 9180edf9c0d6e9d0600659709cead3ab17d6b7e3 (diff) | |
| parent | bb8071e448c5d35a87cff965a76347732579cbed (diff) | |
merge
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpanelpeople.cpp')
| -rw-r--r-- | indra/newview/llpanelpeople.cpp | 15 | 
1 files changed, 10 insertions, 5 deletions
diff --git a/indra/newview/llpanelpeople.cpp b/indra/newview/llpanelpeople.cpp index d2a518a06a..93a6a7803a 100644 --- a/indra/newview/llpanelpeople.cpp +++ b/indra/newview/llpanelpeople.cpp @@ -683,9 +683,15 @@ void LLPanelPeople::updateFriendList()  			online_friendsp.push_back(buddy_id);  	} -	mOnlineFriendList->setDirty(); -	mAllFriendList->setDirty(); - +	/* +	 * Avatarlists  will be hidden by showFriendsAccordionsIfNeeded(), if they do not have items. +	 * But avatarlist can be updated only if it is visible @see LLAvatarList::draw();    +	 * So we need to do force update of lists to avoid inconsistency of data and view of avatarlist.  +	 */ +	mOnlineFriendList->setDirty(true, !mOnlineFriendList->filterHasMatches());// do force update if list do NOT have items +	mAllFriendList->setDirty(true, !mAllFriendList->filterHasMatches()); +	//update trash and other buttons according to a selected item +	updateButtons();  	showFriendsAccordionsIfNeeded();  } @@ -1434,9 +1440,8 @@ void LLPanelPeople::onFriendListRefreshComplete(LLUICtrl*ctrl, const LLSD& param  	{  		showAccordion("tab_all", param.asInteger());  	} +	updateButtons(); -	LLAccordionCtrl* accordion = getChild<LLAccordionCtrl>("friends_accordion"); -	accordion->arrange();  }  void LLPanelPeople::setAccordionCollapsedByUser(LLUICtrl* acc_tab, bool collapsed)  | 
