diff options
author | maksymsproductengine <maksymsproductengine@lindenlab.com> | 2013-02-20 16:47:54 +0200 |
---|---|---|
committer | maksymsproductengine <maksymsproductengine@lindenlab.com> | 2013-02-20 16:47:54 +0200 |
commit | 2dfdd050d487df6aaa7a169208e02b30a313127f (patch) | |
tree | 854399ff016cfb7c41f5e56e5738971c19e8f603 /indra/newview | |
parent | bfdd9b2e134110c7ed7b68925f78aac721e66905 (diff) |
CHUI-784 FIXED Crash when closing expanded group chat
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index 60e306eef4..c8088588da 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -1526,10 +1526,10 @@ bool LLFloaterIMContainer::removeConversationListItem(const LLUUID& uuid, bool c if (widget) { is_widget_selected = widget->isSelected(); - new_selection = mConversationsRoot->getNextFromChild(widget); + new_selection = mConversationsRoot->getNextFromChild(widget, FALSE); if (!new_selection) { - new_selection = mConversationsRoot->getPreviousFromChild(widget); + new_selection = mConversationsRoot->getPreviousFromChild(widget, FALSE); } widget->destroyView(); } |