1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-22 08:52:12 +02:00

* Off-by-one error.

This commit is contained in:
Christian Muehlhaeuser 2011-02-14 12:21:07 +01:00
parent 6e708cc0c4
commit eebd2ed390

@ -62,7 +62,7 @@ TrackHeader::checkState()
QList< double > m_columnWeights;
m_columnWeights << 0.21 << 0.22 << 0.20 << 0.05 << 0.05 << 0.05 << 0.05 << 0.05; // << 0.12;
for ( int i = 0; i < count(); i++ )
for ( int i = 0; i < count() - 1; i++ )
{
if ( isSectionHidden( i ) )
continue;