diff options
author | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-03-06 17:43:10 -0800 |
---|---|---|
committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-03-06 17:43:10 -0800 |
commit | d73ca40667527a1fdaf29ac3629ec7ce8a7e0f40 (patch) | |
tree | aaae9afa8c68164c249ed8d2624e174ba2816c94 /indra | |
parent | 6953be640f075bebd218bc1f6c026f720e677b5f (diff) |
CHUI-834 (Conversation selection in conversation list does not update when redocking torn off conversations): Now when click to dock a torn off floater, the correct conversation line item will be selected.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloaterimsessiontab.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llfloaterimsessiontab.cpp b/indra/newview/llfloaterimsessiontab.cpp index de1b398131..164625fc95 100644 --- a/indra/newview/llfloaterimsessiontab.cpp +++ b/indra/newview/llfloaterimsessiontab.cpp @@ -798,6 +798,12 @@ void LLFloaterIMSessionTab::onTearOffClicked() { forceReshape(); } + //Upon re-docking the torn off floater, select the corresponding conversation line item + else + { + LLFloaterIMContainer* container = LLFloaterReg::findTypedInstance<LLFloaterIMContainer>("im_container"); + container->selectConversation(mSessionID); + } refreshConversation(); updateGearBtn(); } |