1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-19 15:37:01 +01:00

fix logic fail

This commit is contained in:
Leo Franchi 2012-04-06 15:14:46 -04:00
parent 110824bb06
commit 55d80eb547

View File

@ -100,7 +100,7 @@ Artist::onTracksAdded( const QList<Tomahawk::query_ptr>& tracks )
QPixmap
Artist::cover( const QSize& size, bool forceLoad ) const
{
if ( !m_infoLoaded || !m_infoLoading )
if ( !m_infoLoaded && !m_infoLoading )
{
if ( !forceLoad )
return QPixmap();