From 5cb0a6221613f1a2f1181cea0fb8bd526ab872bf Mon Sep 17 00:00:00 2001
From: Gilbert Gonzales <gilbert@lindenlab.com>
Date: Thu, 20 Sep 2012 11:28:10 -0700
Subject: [PATCH] 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().

---
 indra/llui/llfolderviewitem.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp
index a20ce23b185..171af92e736 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
-- 
GitLab