From 857fae6c4fb0f21c49b13f53bb4d3290305f9165 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 --- tdeui/kiconview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdeui/kiconview.cpp b/tdeui/kiconview.cpp index ae251c15c..8e9624db9 100644 --- a/tdeui/kiconview.cpp +++ b/tdeui/kiconview.cpp @@ -634,7 +634,7 @@ void TDEIconViewItem::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() ); } }