diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-05-02 15:32:25 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-05-02 15:32:25 -0500 |
commit | 857fae6c4fb0f21c49b13f53bb4d3290305f9165 (patch) | |
tree | f5a343a4672c201df9f84cde831e7d99cc275d94 | |
parent | 89798786dbb571ff5af2af8127bf19be9141957b (diff) | |
download | tdelibs-857fae6c4fb0f21c49b13f53bb4d3290305f9165.tar.gz tdelibs-857fae6c4fb0f21c49b13f53bb4d3290305f9165.zip |
Revert previous patch as the error appears to be in TQFontMetrics, not this file
-rw-r--r-- | tdeui/kiconview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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() ); } } |