1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

* Set m_finished when tracks are loaded in Artist- & AlbumPlaylistInterface.

This commit is contained in:
Christian Muehlhaeuser
2012-06-26 05:00:26 +02:00
parent 3a580faa1d
commit 03695c2bc4
2 changed files with 8 additions and 4 deletions

View File

@@ -196,6 +196,7 @@ AlbumPlaylistInterface::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData re
}
else
{
m_finished = true;
emit tracksLoaded( m_mode, m_collection );
}
}
@@ -212,5 +213,6 @@ AlbumPlaylistInterface::onTracksLoaded( const QList< query_ptr >& tracks )
else
m_queries << tracks;
m_finished = true;
emit tracksLoaded( m_mode, m_collection );
}

View File

@@ -194,6 +194,7 @@ ArtistPlaylistInterface::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData r
}
else
{
m_finished = true;
emit tracksLoaded( m_mode, m_collection );
}
}
@@ -210,5 +211,6 @@ ArtistPlaylistInterface::onTracksLoaded( const QList< query_ptr >& tracks )
else
m_queries << tracks;
m_finished = true;
emit tracksLoaded( m_mode, m_collection );
}