diff options
author | maksymsproductengine <maksymsproductengine@lindenlab.com> | 2012-10-17 19:16:13 +0300 |
---|---|---|
committer | maksymsproductengine <maksymsproductengine@lindenlab.com> | 2012-10-17 19:16:13 +0300 |
commit | 30a04430df02c6f3e949af0e457fe4ed49474ee3 (patch) | |
tree | 36343ba43c9b484e36af1b7dac9aace9b7fb7bdb /indra | |
parent | 1251f45e6246d81658cf4fe6f2654472c772e94b (diff) |
CHUI-419 FIXED Selecting the drop down arrow to list participants for a conversation does not select that conversation
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llconversationview.cpp | 7 |
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); + } + } } |