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

Fix seconds to minutes

This commit is contained in:
Leo Franchi 2011-02-18 23:04:16 -05:00
parent 8b794bf281
commit 94625692d7

@ -521,7 +521,7 @@ Tomahawk::EchonestControl::calculateSummary()
} else if( selectedType() == "Tempo" ) {
summary = QString( "about %1 BPM" ).arg( m_data.second.toString() );
} else if( selectedType() == "Duration" ) {
summary = QString( "about %1 minutes long" ).arg( m_data.second.toString() );
summary = QString( "about %1 minutes long" ).arg( m_data.second / 60 );
} else if( selectedType() == "Loudness" ) {
summary = QString( "about %1 dB" ).arg( m_data.second.toString() );
} else if( selectedType() == "Latitude" || selectedType() == "Longitude" ) {