mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 14:16:32 +02:00
Fix TWK-1573
This commit is contained in:
@@ -306,7 +306,11 @@ PlaylistModel::insertEntries( const QList< Tomahawk::plentry_ptr >& entries, int
|
|||||||
{
|
{
|
||||||
queries << entry->query();
|
queries << entry->query();
|
||||||
d->waitingForResolved.append( entry->query().data() );
|
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() ) );
|
connect( plitem, SIGNAL( dataChanged() ), SLOT( onDataChanged() ) );
|
||||||
|
Reference in New Issue
Block a user