diff options
Diffstat (limited to 'indra')
| -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();  } | 
