From e5f207f0f599dece4efcfdfc8c558cd4ba5356bd Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Mon, 14 Jan 2013 11:08:58 -0500 Subject: [PATCH] THR-40: Set last.fm resolver icon so last.fm results have icon --- src/libtomahawk/accounts/lastfm/LastFmAccount.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libtomahawk/accounts/lastfm/LastFmAccount.cpp b/src/libtomahawk/accounts/lastfm/LastFmAccount.cpp index 54d1cad93..11e62ff5d 100644 --- a/src/libtomahawk/accounts/lastfm/LastFmAccount.cpp +++ b/src/libtomahawk/accounts/lastfm/LastFmAccount.cpp @@ -287,6 +287,7 @@ LastFmAccount::hookupResolver() const AtticaManager::Resolver data = AtticaManager::instance()->resolverData( res.id() ); m_resolver = QPointer< ExternalResolverGui >( qobject_cast< ExternalResolverGui* >( Pipeline::instance()->addScriptResolver( data.scriptPath ) ) ); + m_resolver.data()->setIcon( icon() ); connect( m_resolver.data(), SIGNAL( changed() ), this, SLOT( resolverChanged() ) ); }