diff options
| author | Gilbert Gonzales <gilbert@lindenlab.com> | 2012-09-20 11:28:10 -0700 | 
|---|---|---|
| committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2012-09-20 11:28:10 -0700 | 
| commit | 5cb0a6221613f1a2f1181cea0fb8bd526ab872bf (patch) | |
| tree | 028b7ce90f1061383936f62a719d26aa523c4316 | |
| parent | 86ac47474f42598d3edb65970117b442457f7284 (diff) | |
CHUI-353: Regress Bug caused by a CHUI 283 commit. Problem: The font was rendering differently due to the folderviewitem::draw() method calling llview::draw(). I added llview::draw() initially but it is not longer needed. Resolution: Removing the call to llview::draw().
| -rwxr-xr-x | indra/llui/llfolderviewitem.cpp | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp index a20ce23b18..171af92e73 100755 --- a/indra/llui/llfolderviewitem.cpp +++ b/indra/llui/llfolderviewitem.cpp @@ -809,9 +809,6 @@ void LLFolderViewItem::draw()              sFilterTextColor, LLFontGL::LEFT, LLFontGL::BOTTOM, LLFontGL::NORMAL, LLFontGL::NO_SHADOW,              filter_string_length, S32_MAX, &right_x, FALSE );      } - - -    LLView::draw();   }  const LLFolderViewModelInterface* LLFolderViewItem::getFolderViewModel( void ) const  | 
