1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 19:30:21 +02:00

Fix TWK-1573

This commit is contained in:
Uwe L. Korn
2014-06-26 01:11:53 +01:00
parent 675fc4b539
commit 2c9fefebeb

View File

@@ -306,7 +306,11 @@ PlaylistModel::insertEntries( const QList< Tomahawk::plentry_ptr >& entries, int
{
queries << entry->query();
d->waitingForResolved.append( entry->query().data() );
connect( entry->query().data(), SIGNAL( resolvingFinished( bool ) ), SLOT( trackResolved( bool ) ) );
connect( entry->query().data(), SIGNAL( playableStateChanged( bool ) ),
SLOT( onQueryBecamePlayable( bool ) ),
Qt::UniqueConnection );
connect( entry->query().data(), SIGNAL( resolvingFinished( bool ) ),
SLOT( trackResolved( bool ) ) );
}
connect( plitem, SIGNAL( dataChanged() ), SLOT( onDataChanged() ) );