1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-20 04:41:36 +02:00

* Fixed not disabling loveButton.

This commit is contained in:
Christian Muehlhaeuser
2011-06-26 05:13:02 +02:00
parent 451713c946
commit 8f69369807

View File

@@ -306,7 +306,7 @@ AudioControls::onPlaybackLoading( const Tomahawk::result_ptr& result )
ui->loveButton->setPixmap( RESPATH "images/loved.png" ); ui->loveButton->setPixmap( RESPATH "images/loved.png" );
ui->loveButton->setChecked( true ); ui->loveButton->setChecked( true );
} }
else else
{ {
ui->loveButton->setPixmap( RESPATH "images/not-loved.png" ); ui->loveButton->setPixmap( RESPATH "images/not-loved.png" );
ui->loveButton->setChecked( false ); ui->loveButton->setChecked( false );
@@ -353,12 +353,12 @@ AudioControls::onPlaybackStopped()
ui->timeLeftLabel->setText( "" ); ui->timeLeftLabel->setText( "" );
ui->coverImage->setPixmap( QPixmap() ); ui->coverImage->setPixmap( QPixmap() );
ui->seekSlider->setVisible( false ); ui->seekSlider->setVisible( false );
ui->loveButton->setVisible( false );
ui->pauseButton->setVisible( false ); ui->pauseButton->setVisible( false );
ui->pauseButton->setEnabled( false ); ui->pauseButton->setEnabled( false );
ui->playPauseButton->setEnabled( true ); ui->playPauseButton->setEnabled( true );
ui->playPauseButton->setVisible( true ); ui->playPauseButton->setVisible( true );
ui->loveButton->setEnabled( false );
ui->loveButton->setVisible( false ); ui->loveButton->setVisible( false );
/* m_pauseAction->setEnabled( false ); /* m_pauseAction->setEnabled( false );
@@ -525,7 +525,7 @@ AudioControls::onLoveButtonClicked( bool checked )
Tomahawk::InfoSystem::InfoSystem::instance()->pushInfo( Tomahawk::InfoSystem::InfoSystem::instance()->pushInfo(
s_acInfoIdentifier, Tomahawk::InfoSystem::InfoUnLove, s_acInfoIdentifier, Tomahawk::InfoSystem::InfoUnLove,
QVariant::fromValue< Tomahawk::InfoSystem::InfoCriteriaHash >( trackInfo ) ); QVariant::fromValue< Tomahawk::InfoSystem::InfoCriteriaHash >( trackInfo ) );
DatabaseCommand_SocialAction* cmd = new DatabaseCommand_SocialAction( m_currentTrack, QString( "Love" ), QString( "false" ) ); DatabaseCommand_SocialAction* cmd = new DatabaseCommand_SocialAction( m_currentTrack, QString( "Love" ), QString( "false" ) );
Database::instance()->enqueue( QSharedPointer<DatabaseCommand>(cmd) ); Database::instance()->enqueue( QSharedPointer<DatabaseCommand>(cmd) );
ui->loveButton->setPixmap( RESPATH "images/not-loved.png" ); ui->loveButton->setPixmap( RESPATH "images/not-loved.png" );