From f8ea0667d4955901f7b3a66c7fcb9fd059879b3f Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 21 Jun 2012 16:35:27 -0400 Subject: [PATCH] Only show spotify wrench if resolver is running --- src/libtomahawk/accounts/spotify/SpotifyAccount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/accounts/spotify/SpotifyAccount.cpp b/src/libtomahawk/accounts/spotify/SpotifyAccount.cpp index d786be550..94323f17f 100644 --- a/src/libtomahawk/accounts/spotify/SpotifyAccount.cpp +++ b/src/libtomahawk/accounts/spotify/SpotifyAccount.cpp @@ -681,7 +681,7 @@ SpotifyAccount::icon() const QWidget* SpotifyAccount::configurationWidget() { - if ( m_spotifyResolver.isNull() ) + if ( m_spotifyResolver.isNull() || !m_spotifyResolver.data()->running() ) return 0; if ( m_configWidget.isNull() )