summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authormaksymsproductengine <maksymsproductengine@lindenlab.com>2012-10-17 19:16:13 +0300
committermaksymsproductengine <maksymsproductengine@lindenlab.com>2012-10-17 19:16:13 +0300
commit30a04430df02c6f3e949af0e457fe4ed49474ee3 (patch)
tree36343ba43c9b484e36af1b7dac9aace9b7fb7bdb /indra/newview
parent1251f45e6246d81658cf4fe6f2654472c772e94b (diff)
CHUI-419 FIXED Selecting the drop down arrow to list participants for a conversation does not select that conversation
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llconversationview.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llconversationview.cpp b/indra/newview/llconversationview.cpp
index 1b450665b3..9144f402b4 100755
--- a/indra/newview/llconversationview.cpp
+++ b/indra/newview/llconversationview.cpp
@@ -222,6 +222,13 @@ void LLConversationViewSession::toggleOpen()
if (!mMinimizedMode)
{
LLFolderViewFolder::toggleOpen();
+
+ // do item's selection when opened
+ if (LLFolderViewFolder::isOpen())
+ {
+ getParentFolder()->setSelection(this, true);
+ }
+
}
}