From 9c5966000c97430a0e667fd9b5b08e0dc1703fbb Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Fri, 30 Mar 2012 17:47:28 -0400 Subject: [PATCH] TWK-799: Don't set autoupdate when loading playlist view --- src/libtomahawk/infobar/infobar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/infobar/infobar.cpp b/src/libtomahawk/infobar/infobar.cpp index 4296b75ae..bdfe8bd74 100644 --- a/src/libtomahawk/infobar/infobar.cpp +++ b/src/libtomahawk/infobar/infobar.cpp @@ -85,7 +85,7 @@ InfoBar::InfoBar( QWidget* parent ) m_autoUpdate->setText( tr( "Automatically update" ) ); m_autoUpdate->setLayoutDirection( Qt::RightToLeft ); m_autoUpdate->setPalette( whitePal ); - connect( m_autoUpdate, SIGNAL( stateChanged( int ) ), this, SIGNAL( autoUpdateChanged( int ) ) ); + connect( m_autoUpdate, SIGNAL( toggled(bool) ), this, SIGNAL( autoUpdateChanged( int ) ) ); ui->horizontalLayout->addWidget( m_autoUpdate );