1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 08:32:42 +02:00

* Show a loading spinner for top hits.

This commit is contained in:
Christian Muehlhaeuser 2012-06-21 21:23:11 +02:00
parent 0dc1d6664a
commit 8148a18b32

View File

@ -228,6 +228,8 @@ ArtistInfoWidget::load( const artist_ptr& artist )
ui->artistLabel->setText( artist->name() );
m_topHitsModel->startLoading();
if ( !m_artist->albums( Mixed ).isEmpty() )
onAlbumsFound( m_artist->albums( Mixed ), Mixed );
@ -258,6 +260,7 @@ ArtistInfoWidget::onTracksFound( const QList<Tomahawk::query_ptr>& queries, Mode
{
Q_UNUSED( mode );
m_topHitsModel->finishLoading();
m_topHitsModel->append( queries );
}