From fc43a6a851dc218c5da8927107a302d92f0f5236 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 9 Aug 2011 03:41:06 +0200 Subject: [PATCH] * Hide the last.fm test button on OS X - for the 0.2 release. --- src/settingsdialog.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/settingsdialog.cpp b/src/settingsdialog.cpp index 808b263bc..2ea04216e 100644 --- a/src/settingsdialog.cpp +++ b/src/settingsdialog.cpp @@ -159,6 +159,10 @@ SettingsDialog::SettingsDialog( QWidget *parent ) ui->lineEditLastfmPassword->setText(s->lastFmPassword() ); connect( ui->pushButtonTestLastfmLogin, SIGNAL( clicked( bool) ), this, SLOT( testLastFmLogin() ) ); +#ifdef Q_WS_MAC // FIXME + ui->pushButtonTestLastfmLogin->setVisible( false ); +#endif + // SCRIPT RESOLVER ui->removeScript->setEnabled( false ); ResolverConfigDelegate* del = new ResolverConfigDelegate( this );