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

* Don't reset the resolver's icon if we couldn't retrieve one in ResolverAccount.

This commit is contained in:
Christian Muehlhaeuser 2013-06-20 09:30:21 +02:00 committed by Michael Zanetti
parent e48b4096b9
commit 277edfe8ca

View File

@ -552,9 +552,9 @@ AtticaResolverAccount::loadIcon()
if ( m_resolver.isNull() )
return;
m_icon = AtticaManager::instance()->iconForResolver( AtticaManager::instance()->resolverForId( m_atticaId ) );
m_resolver.data()->setIcon( m_icon );
if ( !m_icon.isNull() )
m_resolver.data()->setIcon( m_icon );
}