1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

* PixmapDelegateFader used wrong default image for tracks.

This commit is contained in:
Christian Muehlhaeuser
2012-12-20 08:17:58 +01:00
parent d8ea510a7c
commit 15f65920bf

View File

@@ -139,7 +139,7 @@ PixmapDelegateFader::setSize( const QSize& size )
else if ( !m_artist.isNull() )
m_current = m_currentReference = TomahawkUtils::defaultPixmap( TomahawkUtils::DefaultArtistImage, m_mode, m_size );
else if ( !m_track.isNull() )
m_current = m_currentReference = TomahawkUtils::defaultPixmap( TomahawkUtils::DefaultArtistImage, m_mode, m_size );
m_current = m_currentReference = TomahawkUtils::defaultPixmap( TomahawkUtils::DefaultTrackImage, m_mode, m_size );
}
else
{