From a40d90b98203e83af363f6f40ceaac2329ebede5 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 2 May 2013 15:32:25 -0500 Subject: [PATCH] Revert previous patch as the error appears to be in TQFontMetrics, not this file (cherry picked from commit 857fae6c4fb0f21c49b13f53bb4d3290305f9165) --- kdeui/kiconview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdeui/kiconview.cpp b/kdeui/kiconview.cpp index 9c1f924d5..4e854aba1 100644 --- a/kdeui/kiconview.cpp +++ b/kdeui/kiconview.cpp @@ -634,7 +634,7 @@ void KIconViewItem::calcRect( const TQString& text_ ) } if ( ( itemIconRect.height() <= 20 ) && ( itemTextRect.height() < itemIconRect.height() ) ) { d->realTextHeight = itemTextRect.height(); - itemTextRect.setHeight( itemIconRect.height() - 4 ); + itemTextRect.setHeight( itemIconRect.height() - 2 ); itemTextRect.setY( itemIconRect.y() ); } }