1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 09:49:42 +01:00

* Make sure we load artist image when loading an unknown album's cover failed.

This commit is contained in:
Christian Muehlhaeuser 2012-12-23 12:30:34 +01:00
parent 9d6dde2c74
commit 5c9b1cbfe8

View File

@ -87,6 +87,7 @@ PixmapDelegateFader::PixmapDelegateFader( const query_ptr& track, const QSize& s
{
connect( m_track.data(), SIGNAL( updated() ), SLOT( trackChanged() ) );
connect( m_track.data(), SIGNAL( resultsChanged() ), SLOT( trackChanged() ) );
connect( m_track->displayQuery().data(), SIGNAL( updated() ), SLOT( trackChanged() ) );
connect( m_track->displayQuery().data(), SIGNAL( coverChanged() ), SLOT( trackChanged() ) );
m_currentReference = TomahawkUtils::createRoundedImage( m_track->displayQuery()->cover( size, forceLoad ), QSize( 0, 0 ), m_mode == TomahawkUtils::Grid ? 0.00 : 0.20 );