diff options
author | MaximB ProductEngine <mberezhnoy@productengine.com> | 2012-10-22 04:35:31 +0300 |
---|---|---|
committer | MaximB ProductEngine <mberezhnoy@productengine.com> | 2012-10-22 04:35:31 +0300 |
commit | 364e8118670f7ea80a1fa7187b23cc46ad2fc2f7 (patch) | |
tree | c08715f2b2a53e0da9443ab4d9eda464591cda63 | |
parent | 730ba97759deabd7fb45e63eae650f83c1d9ba99 (diff) |
CHUI-428 (Scroll conversation list to the newly created conversation)
fixed
-rw-r--r-- | indra/newview/llimfloatercontainer.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llimfloatercontainer.cpp b/indra/newview/llimfloatercontainer.cpp index 14ed0b3c3e..cf4d054dd5 100644 --- a/indra/newview/llimfloatercontainer.cpp +++ b/indra/newview/llimfloatercontainer.cpp @@ -1113,6 +1113,9 @@ void LLIMFloaterContainer::setItemSelect(const LLUUID& session_id) mSelectedSession = session_id; LLFolderViewItem* widget = mConversationsWidgets[session_id]; (widget->getRoot())->setSelection(widget, FALSE, FALSE); + + // Scroll to selected item + mConversationsRoot->scrollToShowSelection(); } } } @@ -1228,6 +1231,9 @@ void LLIMFloaterContainer::addConversationListItem(const LLUUID& uuid, bool isWi // set the widget to minimized mode if conversations pane is collapsed widget->toggleMinimizedMode(mConversationsPane->isCollapsed()); + // scroll to newly added item + mConversationsRoot->scrollToShowSelection(); + return; } |