diff options
author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2013-01-17 16:25:21 +0200 |
---|---|---|
committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2013-01-17 16:25:21 +0200 |
commit | be7835eec6b6cae12656fede44fc2cda1729e20d (patch) | |
tree | de2415991795b9e421aff25bf7b5c7135ec47376 | |
parent | a835361d7163801192283aba83bf70678b1ca4e0 (diff) |
CHUI-625 Participant drop down icon not visible when conversation is highlighted orange: redraw the arrow slightly later
-rwxr-xr-x | indra/newview/llconversationview.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llconversationview.cpp b/indra/newview/llconversationview.cpp index 126c73c283..16dd0e4565 100755 --- a/indra/newview/llconversationview.cpp +++ b/indra/newview/llconversationview.cpp @@ -202,14 +202,6 @@ void LLConversationViewSession::draw() const LLFolderViewItem::Params& default_params = LLUICtrlFactory::getDefaultParams<LLFolderViewItem>(); const BOOL show_context = (getRoot() ? getRoot()->getShowSelectionContext() : FALSE); - // we don't draw the open folder arrow in minimized mode - if (mHasArrow && !mCollapsedMode) - { - // update the rotation angle of open folder arrow - updateLabelRotation(); - drawOpenFolderArrow(default_params, sFgColor); - } - // Indicate that flash can start (moot operation if already started, done or not flashing) startFlashing(); @@ -232,6 +224,14 @@ void LLConversationViewSession::draw() (*iit)->setVisible(draw_children); } + // we don't draw the open folder arrow in minimized mode + if (mHasArrow && !mCollapsedMode) + { + // update the rotation angle of open folder arrow + updateLabelRotation(); + drawOpenFolderArrow(default_params, sFgColor); + } + LLView::draw(); } |