mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-21 16:29:43 +01:00
Re-enable last.fm test login button when changing fields
This commit is contained in:
parent
7698b2ec38
commit
414f553eb3
@ -39,6 +39,9 @@ LastFmConfig::LastFmConfig( LastFmAccount* account )
|
||||
|
||||
connect( m_ui->testLogin, SIGNAL( clicked( bool ) ), this, SLOT( testLogin( bool ) ) );
|
||||
|
||||
connect( m_ui->username, SIGNAL( textChanged( QString ) ), this, SLOT( enableButton() ) );
|
||||
connect( m_ui->password, SIGNAL( textChanged( QString ) ), this, SLOT( enableButton() ) );
|
||||
|
||||
// #ifdef Q_WS_MAC // FIXME
|
||||
// m_ui->testLogin->setVisible( false );
|
||||
// #endif
|
||||
@ -89,6 +92,14 @@ LastFmConfig::testLogin(bool )
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
LastFmConfig::enableButton()
|
||||
{
|
||||
m_ui->testLogin->setText( tr( "Test Login" ) );
|
||||
m_ui->testLogin->setEnabled( true );
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
LastFmConfig::onLastFmFinished()
|
||||
{
|
||||
|
@ -42,6 +42,9 @@ public slots:
|
||||
void testLogin( bool );
|
||||
void onLastFmFinished();
|
||||
|
||||
private slots:
|
||||
void enableButton();
|
||||
|
||||
private:
|
||||
LastFmAccount* m_account;
|
||||
Ui_LastFmConfig* m_ui;
|
||||
|
Loading…
x
Reference in New Issue
Block a user