From eefdbced383333b75fbe6b2f338c6db74f68d018 Mon Sep 17 00:00:00 2001
From: Tofu Linden <tofu.linden@lindenlab.com>
Date: Tue, 16 Feb 2010 16:41:16 +0000
Subject: [PATCH] fix implicit cast in 2ea5dc26d479 / EXT-5251

---
 indra/newview/llfolderview.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp
index 888ddbcbc7b..68faaeaa0b6 100644
--- a/indra/newview/llfolderview.cpp
+++ b/indra/newview/llfolderview.cpp
@@ -236,9 +236,9 @@ LLFolderView::LLFolderView(const Params& p)
 	LLTextBox::Params text_p;
 	LLFontGL* font = getLabelFontForStyle(mLabelStyle);
 	LLRect new_r = LLRect(rect.mLeft + ICON_PAD,
-						  rect.mTop - TEXT_PAD,
-						  rect.mRight,
-						  rect.mTop - TEXT_PAD - font->getLineHeight());
+			      rect.mTop - TEXT_PAD,
+			      rect.mRight,
+			      rect.mTop - TEXT_PAD - llfloor(font->getLineHeight()));
 	text_p.rect(new_r);
 	text_p.name(std::string(p.name));
 	text_p.font(font);
-- 
GitLab