From 1e0a9e6d9415322fe2c2e18126d1a921e6092c1c Mon Sep 17 00:00:00 2001 From: David Sansome Date: Sun, 27 Nov 2011 17:53:04 +0000 Subject: [PATCH] Fix a bug in the last.fm settings page where logging in with invalid credentials wouldn't hide the busy spinner and re-enable the credential fields. --- src/internet/lastfmsettingspage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internet/lastfmsettingspage.cpp b/src/internet/lastfmsettingspage.cpp index 1b953df9a..d42b46e4e 100644 --- a/src/internet/lastfmsettingspage.cpp +++ b/src/internet/lastfmsettingspage.cpp @@ -74,11 +74,11 @@ void LastFMSettingsPage::AuthenticationComplete(bool success) { ui_->password->clear(); // Save settings Save(); - RefreshControls(true); } else { QMessageBox::warning(this, tr("Authentication failed"), tr("Your Last.fm credentials were incorrect")); } + RefreshControls(success); service_->UpdateSubscriberStatus(); }