1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

* Hide album label on track page if no album name is set.

This commit is contained in:
Christian Muehlhaeuser 2012-06-16 08:21:21 +02:00
parent 9849a8ee58
commit 44bf61adc0

View File

@ -180,6 +180,7 @@ TrackInfoWidget::load( const query_ptr& query )
ui->trackLabel->setText( query->track() );
ui->artistLabel->setQuery( query );
ui->albumLabel->setQuery( query );
ui->albumLabel->setVisible( !query->album().isEmpty() );
m_relatedTracksModel->clear();